-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPSegmentedScrollView.podspec
33 lines (24 loc) · 1.27 KB
/
CPSegmentedScrollView.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
#
# Be sure to run `pod lib lint CPSegmentedScrollView.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'CPSegmentedScrollView'
s.version = '1.0.1'
s.summary = 'CPSegmentedScrollView is a consul to animate a segmented control when paired with a scroll view.'
s.homepage = 'https://github.com/ClementPadovani/CPSegmentedScrollView'
s.screenshots = 'https://raw.githubusercontent.com/ClementPadovani/CPSegmentedScrollView/master/CPSegmentedScrollView.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Clément Padovani' => '[email protected]' }
s.source = { :git => 'https://github.com/ClementPadovani/CPSegmentedScrollView.git', :tag => s.version.to_s }
s.platform = :ios
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.source_files = 'CPSegmentedScrollView/Classes/**/*'
s.public_header_files = 'CPSegmentedScrollView/Classes/Public/*.h'
s.private_header_files = 'CPSegmentedScrollView/Classes/Private/*.h'
s.frameworks = 'UIKit', 'Foundation'
end