-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathSOZOChromoplast.podspec
More file actions
23 lines (21 loc) · 996 Bytes
/
SOZOChromoplast.podspec
File metadata and controls
23 lines (21 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SOZOChromoplast"
s.version = "0.0.3"
s.summary = "Extract the most prevalent colors from a UIImage"
s.description = <<-DESC
Inspired by functionality in iTunes' album view,
SOZOChromoplast finds the most relevant colors in a
given UIImage quickly and painlessly, giving you the
perfect color scheme every time.
DESC
s.homepage = "https://github.com/sozorogami/"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "sozorogami" => "tyler.tape@gmail.com" }
s.social_media_url = "http://twitter.com/sozorogami"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/sozorogami/SOZOChromoplast.git", :tag => "v#{s.version}" }
s.source_files = "SOZOChromoplast/**/*.{h,m}"
s.exclude_files = "Classes/Exclude", "Examples"
s.requires_arc = true
s.framework = "UIKit"
end