-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathBallcap.podspec
More file actions
executable file
·25 lines (24 loc) · 893 Bytes
/
Ballcap.podspec
File metadata and controls
executable file
·25 lines (24 loc) · 893 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
Pod::Spec.new do |s|
s.name = "Ballcap"
s.version = "2.0.1"
s.summary = "Firestore design framework"
s.swift_version = "5"
s.description = <<-DESC
Ballcap is a framework for operating Cloud Firestore Document.
DESC
s.homepage = "https://github.com/1amageek/Ballcap-iOS"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "1amageek" => "tmy0x3@icloud.com" }
s.social_media_url = "https://twitter.com/1amageek"
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
#s.tvos.deployment_target = '10.0'
s.source = { :git => "https://github.com/1amageek/Ballcap-iOS.git", :tag => "#{s.version}" }
s.source_files = "Sources/Ballcap/**/*.swift"
s.requires_arc = true
s.static_framework = true
s.dependency "Firebase"
s.dependency "Firebase/Firestore"
s.dependency "Firebase/Storage"
s.dependency "FirebaseFirestoreSwift"
end