FirebaseStorageSwift.podspec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseStorageSwift'
  3. s.version = '0.1.0'
  4. s.summary = 'Swift Extensions for Google Cloud Storage'
  5. s.description = <<-DESC
  6. Firebase Storage provides robust, secure file uploads and downloads from Firebase SDKs, powered by Google Cloud Storage.
  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 => 'StorageSwift-' + s.version.to_s
  14. }
  15. s.swift_version = '5.0'
  16. s.ios.deployment_target = '8.0'
  17. s.osx.deployment_target = '10.11'
  18. s.tvos.deployment_target = '10.0'
  19. s.watchos.deployment_target = '6.0'
  20. s.cocoapods_version = '>= 1.4.0'
  21. s.static_framework = true
  22. s.prefix_header_file = false
  23. s.source_files = [
  24. 'FirebaseStorageSwift/Sources/*.swift',
  25. ]
  26. s.dependency 'FirebaseStorage', '~> 3.6'
  27. s.test_spec 'integration' do |int_tests|
  28. int_tests.platforms = {:ios => '8.0', :osx => '10.11', :tvos => '10.0'}
  29. int_tests.source_files = 'FirebaseStorageSwift/Tests/Integration/*.swift'
  30. int_tests.requires_app_host = true
  31. # Resources are shared with FirebaseStorage's integration tests.
  32. int_tests.resources = 'FirebaseStorage/Tests/Integration/Resources/1mb.dat',
  33. 'FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist',
  34. 'FirebaseStorage/Tests/Integration/Resources/HomeImprovement.numbers'
  35. int_tests.dependency 'FirebaseAuth', '~> 6.5'
  36. end
  37. end