From b7f35a0b76bb2afd682b806d2b25568611612557 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Tue, 20 Mar 2018 11:59:03 -0700 Subject: Initial Firebase Functions (#948) --- FirebaseFunctions.podspec | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 FirebaseFunctions.podspec (limited to 'FirebaseFunctions.podspec') 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 -- cgit v1.2.3