FirebaseAuthInterop.podspec 1.1 KB

1234567891011121314151617181920212223242526272829
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAuthInterop'
  3. s.version = '1.0.0'
  4. s.summary = 'Interfaces that allow other Firebase SDKs to use Auth functionality.'
  5. s.description = <<-DESC
  6. INTERNAL ONLY: A set of protocols that other Firebase SDKs can use to interoperate with Auth in a
  7. safe and reliable manner.
  8. DESC
  9. s.homepage = 'https://firebase.google.com'
  10. s.license = { :type => 'Apache', :file => 'LICENSE' }
  11. s.authors = 'Google, Inc.'
  12. # NOTE that these should not be used externally, this is for Firebase pods to depend on each
  13. # other.
  14. s.source = {
  15. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  16. # TODO: Remove this once it is merged in master and ready for release in M30.
  17. # :tag => 'AuthInterop-' + s.version.to_s
  18. :tag => 'pre-AuthInterop-' + s.version.to_s
  19. }
  20. s.social_media_url = 'https://twitter.com/Firebase'
  21. s.ios.deployment_target = '8.0'
  22. s.osx.deployment_target = '10.10'
  23. s.tvos.deployment_target = '10.0'
  24. s.source_files = 'Interop/Auth/**/*.h'
  25. s.public_header_files = 'Interop/Auth/Public/*.h'
  26. end