-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDoubleSlider.podspec
16 lines (16 loc) · 956 Bytes
/
DoubleSlider.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "DoubleSlider"
s.version = "1.0.0"
s.summary = "DoubleSlider is a version of UISlider that has two draggable points —useful for choosing two points in a range."
#s.description = "DoubleSlider is a version of UISlider that has two draggable points —useful for choosing two points in a range."
s.homepage = "https://github.com/yhkaplan/doubleslider"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "yhkaplan" => "[email protected]" }
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/yhkaplan/DoubleSlider.git", :tag => "#{s.version}" }
s.source_files = "DoubleSlider/DoubleSlider/**/*.{h,swift}"
s.exclude_files = "Classes/Exclude"
# s.public_header_files = "Classes/**/*.h"
s.framework = "UIKit", "CoreGraphics"
end