forked from contentful/contentful.objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentfulDeliveryAPI.podspec
30 lines (24 loc) · 1.45 KB
/
ContentfulDeliveryAPI.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
30
Pod::Spec.new do |s|
s.name = "ContentfulDeliveryAPI"
s.version = "1.10.4"
s.summary = "Objective-C SDK for Contentful's Content Delivery API."
s.homepage = "https://github.com/contentful/contentful.objc/"
s.social_media_url = 'https://twitter.com/contentful'
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.authors = { "Boris Bügling" => "[email protected]" }
s.source = { :git => "https://github.com/contentful/contentful.objc.git",
:tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'Code/*.{h,m}',
s.public_header_files = 'Code/{CDAArray,CDAAsset,CDAClient,CDAConfiguration,CDAContentType,CDAEntry,CDAError,CDAField,CDANullabilityStubs,CDARequest,CDAResource,CDAResponse,CDASpace,CDASyncedSpace,ContentfulDeliveryAPI,CDAPersistenceManager,CDAPersistedAsset,CDAPersistedEntry,CDAPersistedSpace,CDALocalizablePersistedEntry,CDALocalizedPersistedEntry}.h'
s.ios.deployment_target = '6.0'
s.ios.source_files = 'Code/UIKit/*.{h,m}'
s.ios.frameworks = 'UIKit', 'MapKit'
s.ios.public_header_files = 'Code/UIKit/{CDAEntriesViewController,CDAFieldsViewController,UIImageView+CDAAsset,CDAMapViewController,CDAResourcesCollectionViewController,CDAResourcesViewController,CDAResourceCell}.h'
s.osx.deployment_target = '10.8'
s.dependency 'AFNetworking', '~> 2.5.3'
s.dependency 'ISO8601DateFormatter', '0.7'
end