-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathJAMAccurateSlider.podspec
More file actions
18 lines (16 loc) · 896 Bytes
/
Copy pathJAMAccurateSlider.podspec
File metadata and controls
18 lines (16 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "JAMAccurateSlider"
s.version = "1.2.1"
s.summary = "A UISlider subclass that enables more accurate value selection."
s.description = <<-DESC
This is a drop-in replacement for UISlider. It allows more accurate value selection when the user drags vertically. Visual feedback helps drive the accurate behavior home. Give it a try!
DESC
s.homepage = "https://github.com/jmenter/JAMAccurateSlider"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Jeff Menter" => "jmenter@gmail.com" }
s.social_media_url = "http://twitter.com/jmenter"
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/jmenter/JAMAccurateSlider.git", :tag => s.version.to_s }
s.source_files = 'Classes', 'Classes/**/*.{h,m,swift}'
s.requires_arc = true
end