-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftTabPager.podspec
executable file
·34 lines (28 loc) · 1.21 KB
/
SwiftTabPager.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
Pod::Spec.new do |s|
s.name = 'SwiftTabPager'
s.version = '2.0.3'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'SegmentedView with full UI control.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Tab Bar with full UI control. You can bind viewControllers and views with SegmentedView.
DESC
s.homepage = 'https://github.com/artsimonyan23/SwiftTabPager'
s.authors = { 'PROJECT_OWNER' => 'USER_EMAIL' }
s.source = { :git => 'https://github.com/artsimonyan23/SwiftTabPager.git', :tag => s.version }
s.ios.deployment_target = '10.0'
s.source_files = 'Source/*.{swift}'
s.swift_version = '5.0'
s.subspec 'Resources' do |re|
re.ios.deployment_target = '10.0'
re.source_files = 'Source/Resources/*.{swift}'
end
s.subspec 'Extensions' do |ext|
ext.ios.deployment_target = '10.0'
ext.source_files = 'Source/Extensions/*.{swift}'
end
end