12 lines
568 B
Ruby
12 lines
568 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "UIColor-Utilities"
|
|
s.version = "1.0.1"
|
|
s.summary = "Helpful utilities for UIColor for iPhone."
|
|
s.homepage = "https://github.com/fcanas/uicolor-utilities"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.authors = { "Erica Sadun" => "erica@ericasadun.com", "Maarten Billemont" => "lhunath@lyndir.com", "Many Others" => "" }
|
|
s.source = { :git => "https://github.com/fcanas/uicolor-utilities.git", :tag => "1.0.1" }
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', '*.{h,m}'
|
|
end
|