forked from vokal/Cat2Cat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCat2Cat.podspec
More file actions
23 lines (19 loc) · 974 Bytes
/
Cat2Cat.podspec
File metadata and controls
23 lines (19 loc) · 974 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 = "Cat2Cat"
s.version = '1.4.0'
s.summary = "Cat2Cat - Asset Catalog -> Image Category"
s.description = <<-DESC
A utility to take AssetCatalogs and turn them into UIImage or NSImage categories.
* Creates category methods prefixed by ac_ to prevent naming collisions
* Can create categories for UIImage, NSImage, or both.
* Pod includes the compiled binary and a sample build script.
DESC
s.homepage = "https://github.com/vokal/Cat2Cat"
s.license = 'MIT'
s.authors = { 'Ellen Shapiro' => 'http://www.vokalinteractive.com', 'Bryan Luby' => 'http://www.vokalinteractive.com' }
s.source = { :git => "https://github.com/vokal/Cat2Cat.git", :tag => s.version.to_s }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.preserve_paths = 'CocoaPod/*'
end