forked from alskipp/ASValueTrackingSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASValueTrackingSlider.podspec
23 lines (21 loc) · 1.25 KB
/
ASValueTrackingSlider.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "ASValueTrackingSlider"
s.version = "0.12.1"
s.summary = "A UISlider subclass that displays the slider value in an animated popUpView"
s.description = <<-DESC
Displays continuously updated values in an animated popUpView
* Customize: font, font color, background color, corner radius
* Option to animate background color and slider track color as value changes
* Optional dataSource protocol to fully customize label text
DESC
s.homepage = "https://github.com/alskipp/ASValueTrackingSlider"
s.screenshots = "http://alskipp.github.io/ASValueTrackingSlider/img/screenshot1.gif",
"http://alskipp.github.io/ASValueTrackingSlider/img/screenshot2.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Al Skipp" => "[email protected]" }
s.social_media_url = 'https://twitter.com/al_skipp'
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/alskipp/ASValueTrackingSlider.git", :tag => "0.12.1" }
s.source_files = 'ASValueTrackingSlider'
s.requires_arc = true
end