-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCSApi.podspec
24 lines (24 loc) · 971 Bytes
/
CSApi.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
Pod::Spec.new do |s|
s.name = "CSApi"
s.version = "1.0"
s.summary = "Client library for using the Cogenta Shopping API."
s.homepage = "https://github.com/cogenta/CSApi"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Will Harris" => "[email protected]" }
s.source = { :git => "https://github.com/cogenta/CSApi.git",
:tag => "1.0" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
s.source_files = 'Classes', 'CSApi/**/*.{h,m}'
s.public_header_files = 'CSApi/CSApi.h'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'Foundation'
15
s.osx.frameworks = 'AppKit', 'CoreServices', 'SystemConfiguration', 'Foundation'
s.requires_arc = true
s.dependency 'AFNetworking', '1.3.2'
s.dependency 'HyperBek'
s.dependency 'Base64'
s.dependency 'NSArray+Functional'
s.dependency 'ISO8601DateFormatter'
s.dependency 'SBJson'
end