forked from SmallSharpToolsOpenSource/SSTTapSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSTTapSlider.podspec
27 lines (18 loc) · 995 Bytes
/
SSTTapSlider.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
Pod::Spec.new do |s|
s.name = "SSTTapSlider"
s.version = "0.0.3"
s.summary = "Slider with ability to tap or pan outside of the thumb control."
s.description = <<-DESC
A normal UISlider requires the thumb control to be moved by first touching in it's bounds.
The SSTTapSlider adds a tap and pan gesture to the UISlider to allow for tapping or panning
anywhere within the control to move the thumb control and change the value of the slider.
DESC
s.homepage = "https://github.com/brennanMKE/SSTTapSlider"
s.license = 'MIT'
s.author = { "Brennan Stehling" => "[email protected]" }
s.social_media_url = "http://twitter.com/smallsharptools"
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/brennanMKE/SSTTapSlider.git", :tag => "0.0.3" }
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
s.requires_arc = true
end