forked from parse-community/Parse-Swift
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathParseSwiftOG.podspec
More file actions
26 lines (26 loc) · 755 Bytes
/
ParseSwiftOG.podspec
File metadata and controls
26 lines (26 loc) · 755 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
Pod::Spec.new do |s|
s.name = "ParseSwiftOG"
s.version = "6.1.0"
s.summary = "The original Parse Swift SDK"
s.homepage = "https://github.com/netreconlab/Parse-Swift"
s.authors = {
'Corey E. Baker' => 'coreyearleon@icloud.com'
}
s.source = {
:git => "#{s.homepage}.git",
:tag => "#{s.version}",
}
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "6.0"
s.swift_versions = ['6.0', '6.1', '6.2']
s.source_files = "Sources/ParseSwift/**/*.swift"
s.resource_bundles = {
"#{s.module_name}_Privacy" => 'Sources/ParseSwift/PrivacyInfo.xcprivacy'
}
s.license = {
:type => "Apache 2.0",
:file => "LICENSE"
}
end