FirebaseFunctions.podspec 902 B

1234567891011121314151617181920212223242526272829
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseFunctions'
  3. s.version = '2.0.0'
  4. s.summary = 'Cloud Functions for Firebase iOS SDK.'
  5. s.description = <<-DESC
  6. iOS SDK for Cloud Functions for Firebase.
  7. DESC
  8. s.homepage = 'https://developers.google.com/'
  9. s.license = { :type => 'Apache', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. :tag => 'Functions-' + s.version.to_s
  14. }
  15. s.ios.deployment_target = '8.0'
  16. s.cocoapods_version = '>= 1.4.0'
  17. s.static_framework = true
  18. s.prefix_header_file = false
  19. s.source_files = 'Functions/FirebaseFunctions/**/*'
  20. s.public_header_files = 'Functions/FirebaseFunctions/Public/*.h'
  21. s.dependency 'FirebaseCore', '~> 5.0'
  22. s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
  23. end