-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTNSlider.podspec
15 lines (14 loc) · 1.07 KB
/
TNSlider.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'TNSlider'
s.version = '0.2.1'
s.summary = 'A control like UISlider but show current value on the thumb.'
s.description = "TNSlider is a control for selecting a single value from a continous range of values like UISlider. The different is TNSlider show current selected value on the indicator (or thumb), that make you have more room for your important contents but still let user know what is the selected value of the slider."
s.homepage = 'https://github.com/tiennth/TNSlider'
# s.screenshots = 'https://github.com/tiennth/TNSlider/blob/master/Screenshot_1.png', 'https://github.com/tiennth/TNSlider/blob/master/Screenshot_2.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tien Nguyen' => '[email protected]' }
s.source = { :git => 'https://github.com/tiennth/TNSlider.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/tiennth'
s.ios.deployment_target = '8.0'
s.source_files = 'TNSlider/Sources/*.swift'
end