FirebaseFunctions.podspec 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Be sure to run `pod lib lint FirebaseFunctions.podspec' to ensure this is a
  3. # valid spec before submitting.
  4. #
  5. # Any lines starting with a # are optional, but their use is encouraged
  6. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
  7. #
  8. Pod::Spec.new do |s|
  9. s.name = 'FirebaseFunctions'
  10. s.version = '1.0.0'
  11. s.summary = 'Cloud Functions for Firebase iOS SDK.'
  12. s.description = <<-DESC
  13. iOS SDK for Cloud Functions for Firebase.
  14. DESC
  15. s.homepage = 'https://developers.google.com/'
  16. s.authors = 'Google, Inc.'
  17. s.source = { :git => 'https://github.com/TBD/FirebaseFunctions.git', :tag => s.version.to_s }
  18. s.ios.deployment_target = '8.0'
  19. s.cocoapods_version = '>= 1.4.0'
  20. s.static_framework = true
  21. s.prefix_header_file = false
  22. s.source_files = 'Functions/FirebaseFunctions/**/*'
  23. s.public_header_files = 'Functions/FirebaseFunctions/Public/*.h'
  24. s.dependency 'FirebaseCore', '~> 4.0'
  25. s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
  26. end