forked from alskipp/ASValueTrackingSlider
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathASValueTrackingSlider.podspec
19 lines (19 loc) · 1.02 KB
/
ASValueTrackingSlider.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "ASValueTrackingSlider"
s.version = "0.8"
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
* Option to animate background color and slider track color as value changes
DESC
s.homepage = "https://github.com/alskipp/ASValueTrackingSlider"
s.screenshots = "http://alskipp.github.io/ASValueTrackingSlider/img/screenshot2.png",
"http://alskipp.github.io/ASValueTrackingSlider/img/screenshot3.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Al Skipp" => "[email protected]" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/alskipp/ASValueTrackingSlider.git", :tag => "0.8" }
s.source_files = 'ASValueTrackingSlider'
s.requires_arc = true
end