mirror of
https://github.com/joncardasis/ChromaColorPicker.git
synced 2024-11-25 22:12:01 +03:00
18 lines
754 B
Ruby
18 lines
754 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "ChromaColorPicker"
|
|
s.version = "1.7.1"
|
|
s.summary = "An intuitive iOS color picker built in Swift."
|
|
|
|
s.description = <<-DESC
|
|
ChromaColorPicker is a Swift UIControl which allows a user to pick a color on a color wheel and lighten or darken the selected color. Great for drawing applications!
|
|
DESC
|
|
|
|
s.homepage = "https://github.com/joncardasis/ChromaColorPicker"
|
|
s.license = { :type => "MIT", :file => "LICENSE" }
|
|
s.author = "Jonathan Cardasis"
|
|
s.platform = :ios, "8.0"
|
|
s.source = { :git => "https://github.com/joncardasis/ChromaColorPicker.git", :tag => "#{s.version}" }
|
|
s.source_files = "ChromaColorPicker", "ChromaColorPicker/*.swift"
|
|
|
|
end
|