-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPXUtilities.podspec
More file actions
30 lines (26 loc) · 1.14 KB
/
PXUtilities.podspec
File metadata and controls
30 lines (26 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.version = "0.2.5"
s.name = "PXUtilities"
s.summary = "Utilities for lots of different things. All useful."
s.description = <<-DESC
A toolbox of useful stuff:
* Map and filter on NSArray
* JSON categories for NSString and NSData
* An pair of really useful async processing methods (go read the header!)
* MD5 category for NSString
* A class that allows you to geocode many, many things without Apple being mad about hitting their servers too often
* Other miscellaneous handy functions
DESC
s.homepage = "https://github.com/pixio/PXUtilities"
s.license = 'MIT'
s.author = { "Daniel Blakemore" => "[email protected]" }
s.source = {
:git => "https://github.com/pixio/PXUtilities.git",
:tag => s.version.to_s
}
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = '*.{h,m}'
s.public_header_files = '*.h'
s.frameworks = 'UIKit', 'Security'
end