-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathT23Kit-Colour.podspec
More file actions
17 lines (17 loc) · 954 Bytes
/
T23Kit-Colour.podspec
File metadata and controls
17 lines (17 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "T23Kit-Colour"
s.version = "0.1.1"
s.summary = "UIColor Category with various colourspace transformations and ∆-E methods."
s.description = <<-DESC
UIColor category with support for non-standard colorspace conversions from RGB, neighbour colour generation methods, and colour distance methods.
DESC
s.homepage = "https://github.com/thirteen23/T23Kit-Colour"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Michael Van Milligan" => "michael.vanmilligan@thirteen23.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/thirteen23/T23Kit-Colour.git", :tag => "0.1.1" }
s.source_files = "T23Kit-Colour/ObjC/{Categories,libcolourspaces}/*.{h,m,c}"
s.public_header_files = "T23Kit-Colour/ObjC/{Categories,libcolourspaces}/*.h"
s.frameworks = "UIKit"
s.requires_arc = false
end