aboutsummaryrefslogtreecommitdiffhomepage
path: root/FirebaseFirestoreSwift.podspec
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-02-26 08:09:28 -0800
committerGravatar GitHub <noreply@github.com>2018-02-26 08:09:28 -0800
commit13e366738463739f0c21d4cedab4bafbfdb57c6f (patch)
tree1104e714aa00b3c115199863ea38886b56c79f41 /FirebaseFirestoreSwift.podspec
parentf735461070b353f8dc6654eeda2610b87307ef15 (diff)
Add build infrastructure for Codable support in Firestore (#815)
* Add Firestore_SwiftTests_iOS target to Xcode * Add FirebaseFirestoreSwift podspec * Add Firestore_SwiftTests_iOS to the Podfile * Add CodableGeoPoint and tests * Version FirebaseFirestoreSwift separately
Diffstat (limited to 'FirebaseFirestoreSwift.podspec')
-rw-r--r--FirebaseFirestoreSwift.podspec37
1 files changed, 37 insertions, 0 deletions
diff --git a/FirebaseFirestoreSwift.podspec b/FirebaseFirestoreSwift.podspec
new file mode 100644
index 0000000..6843070
--- /dev/null
+++ b/FirebaseFirestoreSwift.podspec
@@ -0,0 +1,37 @@
+#
+# Be sure to run `pod lib lint FirebaseFirestoreSwift.podspec' to ensure this is a
+# valid spec before submitting.
+#
+
+Pod::Spec.new do |s|
+ s.name = 'FirebaseFirestoreSwift'
+ s.version = '0.1'
+ s.summary = 'Google Cloud Firestore for iOS Swift Extensions'
+
+ s.description = <<-DESC
+Google Cloud Firestore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
+ DESC
+
+ s.homepage = 'https://developers.google.com/'
+ s.license = { :type => 'Apache', :file => 'LICENSE' }
+ s.authors = 'Google, Inc.'
+
+ s.source = {
+ :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
+ :tag => s.version.to_s
+ }
+
+ s.swift_version = '4.0'
+ s.ios.deployment_target = '8.0'
+
+ s.cocoapods_version = '>= 1.4.0'
+ s.static_framework = true
+ s.prefix_header_file = false
+
+ s.requires_arc = true
+ s.source_files = [
+ 'Firestore/Swift/Source/**/*.swift',
+ ]
+
+ s.dependency 'FirebaseFirestore', ">= 0.10.0"
+end