-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSplitView.podspec
34 lines (28 loc) · 1.29 KB
/
SplitView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# Be sure to run `pod lib lint SplitViewTest.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SplitView'
s.version = '2.0.2'
s.summary = 'A resizable Split View'
s.swift_versions = ['4.2', '5.0', '5.1']
s.description = <<-DESC
A resizable Split View inspired by Apple's Split View for iPadOS
DESC
s.homepage = 'https://github.com/twodayslate/SplitView'
s.screenshots = 'https://github.com/twodayslate/SplitView/raw/master/images/horizontal.png', 'https://github.com/twodayslate/SplitView/raw/master/images/vertical.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'twodayslate' => '[email protected]' }
s.source = { :git => 'https://github.com/twodayslate/SplitView.git', :tag => "v#{s.version}" }
s.social_media_url = 'https://twitter.com/twodayslate'
s.ios.deployment_target = '11.0'
#s.osx.deployment_target = '10.15'
s.source_files = 'SplitView/*'
s.exclude_files = [ 'SplitView/Info.plist']
s.public_header_files = 'splitview/*.h'
s.frameworks = 'UIKit'
end