-
Notifications
You must be signed in to change notification settings - Fork 1
/
JQKit.podspec
29 lines (25 loc) · 965 Bytes
/
JQKit.podspec
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
Pod::Spec.new do |s|
s.name = "JQKit"
s.version = "0.1.4"
s.summary = "JQKit is an Objective-C wrapper around jq."
s.description = <<-DESC
JQKit is an Objective-C wrapper around jq.
* NSData+JQ
* NSString+JQ
DESC
s.homepage = "https://github.com/fleitz/JQKit"
s.license = 'MIT'
s.author = { "Fred Leitz" => "[email protected]" }
s.source = { :git => "https://github.com/fleitz/JQKit.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes/**/*.{h,m,c}'
# s.resources = 'Assets'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end