forked from contentful/contentful.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContentful.podspec
More file actions
30 lines (23 loc) · 984 Bytes
/
Contentful.podspec
File metadata and controls
30 lines (23 loc) · 984 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
27
28
29
#!/usr/bin/ruby
Pod::Spec.new do |spec|
spec.name = "Contentful"
spec.version = "0.3.0"
spec.summary = "Swift SDK for Contentful's Content Delivery API."
spec.homepage = "https://github.com/contentful/contentful.swift/"
spec.social_media_url = 'https://twitter.com/contentful'
spec.license = {
:type => 'MIT',
:file => 'LICENSE'
}
spec.authors = { "Boris Bügling" => "boris@buegling.com", "JP Wright" => "jp@contentful.com" }
spec.source = { :git => "https://github.com/contentful/contentful.swift.git",
:tag => spec.version.to_s }
spec.requires_arc = true
spec.source_files = 'Sources/*.swift'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
spec.dependency 'Decodable', '~> 0.5'
spec.dependency 'Interstellar-Contentful', '~> 2.1.0'
end