forked from RSully/RSColorPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RSColorPicker.podspec
19 lines (18 loc) · 1.23 KB
/
RSColorPicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "RSColorPicker"
s.version = "0.8.3"
s.summary = "iPhone color picker view with brightness control, opacity control, and delegation support."
s.description = <<-DESC
iPhone color picker view with brightness control, opacity control, and delegation support.
DESC
s.homepage = "https://github.com/RSully/RSColorPicker"
s.screenshots = "https://raw.github.com/RSully/RSColorPicker/v0.8.3/Example01.png", "https://raw.github.com/RSully/RSColorPicker/v0.8.3/Example02.png", "https://raw.github.com/RSully/RSColorPicker/v0.8.3/Example03.png", "https://raw.github.com/RSully/RSColorPicker/v0.8.3/Example04.png", "https://raw.github.com/RSully/RSColorPicker/v0.8.3/Example05.png"
s.license = { :type => 'BSD', :file => "LICENSE.md" }
s.author = { "Ryan" => "[email protected]" }
s.source = { :git => "https://github.com/RSully/RSColorPicker.git", :tag => "v0.8.3" }
s.platform = :ios, '5.0'
s.source_files = 'RSColorPicker/ColorPickerClasses/**/*.{h,m}'
s.frameworks = 'QuartzCore', 'CoreGraphics', 'UIKit', 'Accelerate'
s.requires_arc = true
s.public_header_files = "RSColorPicker/ColorPickerClasses/RSColorPickerView.h"
end