forked from TomThorpe/TTRangeSlider
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTTRangeSlider.podspec
More file actions
17 lines (16 loc) · 818 Bytes
/
Copy pathTTRangeSlider.podspec
File metadata and controls
17 lines (16 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "TTRangeSlider"
s.version = "1.0.4"
s.summary = "A slider that allows you to pick a range"
s.description = <<-DESC
A slider, similar in style to UISlider, but has two handles instead of one, allowing you to pick a minimum and maximum range.
DESC
s.homepage = "https://github.com/TomThorpe/TTRangeSlider"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Tom Thorpe" => "code@tomthorpe.co.uk" }
s.source = { :git => "https://github.com/TomThorpe/TTRangeSlider.git", :tag => 'v1.0.4' }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end