-
Notifications
You must be signed in to change notification settings - Fork 36
/
ContentfulPersistenceSwift.podspec
34 lines (26 loc) · 1.15 KB
/
ContentfulPersistenceSwift.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
31
32
33
#!/usr/bin/ruby
require 'dotenv/load'
Pod::Spec.new do |spec|
spec.name = "ContentfulPersistenceSwift"
spec.version = ENV['CONTENTFUL_PERSISTENCE_VERSION']
spec.summary = "Simplified persistence for the Contentful Swift SDK."
spec.homepage = "https://github.com/contentful/contentful-persistence.swift/"
spec.social_media_url = 'https://twitter.com/contentful'
spec.license = {
:type => 'MIT',
:file => 'LICENSE'
}
spec.authors = { "JP Wright" => "[email protected]", "Boris Bügling" => "[email protected]" }
spec.source = { :git => "https://github.com/contentful/contentful-persistence.swift.git",
:tag => spec.version.to_s }
spec.requires_arc = true
spec.swift_version = '5.0'
spec.source_files = 'Sources/**/*.swift'
spec.module_name = 'ContentfulPersistence'
spec.frameworks = 'CoreData'
spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '10.13'
spec.watchos.deployment_target = '4.0'
spec.tvos.deployment_target = '12.0'
spec.dependency 'Contentful', '~> 5.5.9'
end