This repository was archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathContentfulDeliveryAPI.podspec
More file actions
46 lines (36 loc) · 1.58 KB
/
ContentfulDeliveryAPI.podspec
File metadata and controls
46 lines (36 loc) · 1.58 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/ruby
require 'dotenv/load'
Pod::Spec.new do |s|
s.name = "ContentfulDeliveryAPI"
s.version = ENV['DELIVERY_SDK_VERSION']
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" => "boris@buegling.com", "JP Wright" => "jp@contentful.com" }
s.source = { :git => "https://github.com/contentful/contentful.objc.git",
:tag => "Delivery-#{s.version.to_s}" }
s.requires_arc = true
s.source_files = [
'ContentfulDeliveryAPI/Resources/*.{h,m}',
'ContentfulDeliveryAPI/*.{h,m}',
'Versions.h'
]
s.public_header_files = [
'ContentfulDeliveryAPI/Resources/{CDAArray,CDAAsset,CDAContentType,CDAEntry,CDAError,CDASpace,CDAResource}.h',
'ContentfulDeliveryAPI/{CDAClient,CDAConfiguration,CDANullabilityStubs,CDARequest,CDAResponse,CDAField,CDASyncedSpace,ContentfulDeliveryAPI,CDAPersistenceManager,CDAPersistedAsset,CDAPersistedEntry,CDAPersistedSpace,CDALocalizablePersistedEntry,CDALocalizedPersistedEntry}.h'
]
# iOS specific
s.ios.deployment_target = '9.0'
s.ios.frameworks = 'UIKit', 'MapKit'
# macOS specific
s.osx.deployment_target = '10.12'
# tvOS specific
s.tvos.deployment_target = '9.0'
s.tvos.frameworks = 'UIKit', 'MapKit'
s.dependency 'AFNetworking', '~> 3.2.1'
s.dependency 'ISO8601', '~> 0.6.0'
end