aboutsummaryrefslogtreecommitdiffhomepage
path: root/FirebaseFunctions.podspec
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-03-20 11:59:03 -0700
committerGravatar GitHub <noreply@github.com>2018-03-20 11:59:03 -0700
commitb7f35a0b76bb2afd682b806d2b25568611612557 (patch)
treedeb4577d3e54c3fafa2a065605faef228a186c1b /FirebaseFunctions.podspec
parent7e65885762757209e0e14ec28e99ec91380e9c2f (diff)
Initial Firebase Functions (#948)
Diffstat (limited to 'FirebaseFunctions.podspec')
-rw-r--r--FirebaseFunctions.podspec33
1 files changed, 33 insertions, 0 deletions
diff --git a/FirebaseFunctions.podspec b/FirebaseFunctions.podspec
new file mode 100644
index 0000000..caf3023
--- /dev/null
+++ b/FirebaseFunctions.podspec
@@ -0,0 +1,33 @@
+#
+# Be sure to run `pod lib lint FirebaseFunctions.podspec' to ensure this is a
+# valid spec before submitting.
+#
+# Any lines starting with a # are optional, but their use is encouraged
+# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
+#
+
+Pod::Spec.new do |s|
+ s.name = 'FirebaseFunctions'
+ s.version = '1.0.0'
+ s.summary = 'Cloud Functions for Firebase iOS SDK.'
+
+ s.description = <<-DESC
+iOS SDK for Cloud Functions for Firebase.
+ DESC
+
+ s.homepage = 'https://developers.google.com/'
+ s.authors = 'Google, Inc.'
+ s.source = { :git => 'https://github.com/TBD/FirebaseFunctions.git', :tag => s.version.to_s }
+
+ s.ios.deployment_target = '8.0'
+
+ s.cocoapods_version = '>= 1.4.0'
+ s.static_framework = true
+ s.prefix_header_file = false
+
+ s.source_files = 'Functions/FirebaseFunctions/**/*'
+ s.public_header_files = 'Functions/FirebaseFunctions/Public/*.h'
+
+ s.dependency 'FirebaseCore', '~> 4.0'
+ s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
+end