forked from sarath-vijay/SVColorPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSVColorPicker.podspec
More file actions
17 lines (14 loc) · 857 Bytes
/
SVColorPicker.podspec
File metadata and controls
17 lines (14 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'SVColorPicker'
s.version = '2.0.1'
s.summary = 'A subclass of UIView wich privide a color picker slider for user.'
s.description = <<-DESC
TODO: This CocoaPods provide a color picker slider for user and user can move the slider point to required color position. A callback block is invoked during the slider position chang and the selected color value will be available as a param in callback block.
DESC
s.homepage = 'https://github.com/sarath-vijay/SVColorPicker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'sarath' => 'sarathvijayp@gmail.com' }
s.source = { :git => 'https://github.com/sarath-vijay/SVColorPicker.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'SVColorPicker/Classes/**/*'
end