forked from zenangst/NSString-ZENInflections
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNSString-ZENInflections.podspec
More file actions
26 lines (24 loc) · 907 Bytes
/
NSString-ZENInflections.podspec
File metadata and controls
26 lines (24 loc) · 907 Bytes
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
Pod::Spec.new do |s|
s.name = "NSString-ZENInflections"
s.version = "1.0"
s.summary = "Returns camelCased, UpperCamelCased, dashed-case, snake_cased representations of an NSString"
s.description = <<-DESC
* Returns camelCased, UpperCamelCased, dashed-case, snake_cased representations of an NSString
DESC
s.homepage = "https://github.com/zenangst/NSString-ZENInflections"
s.license = {
:type => 'MIT',
:file => 'LICENSE.md'
}
s.author = { "Christoffer Winterkvist" => "christoffer@winterkvist.com" }
s.social_media_url = "http://twitter.com/zenangst"
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = {
:git => 'https://github.com/zenangst/NSString-ZENInflections.git',
:tag => s.version.to_s
}
s.source_files = 'NSString-ZENInflections/'
s.frameworks = 'Foundation'
s.requires_arc = true
end