FirebaseFirestoreSwift.podspec 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Be sure to run `pod lib lint FirebaseFirestoreSwift.podspec' to ensure this is a
  3. # valid spec before submitting.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'FirebaseFirestoreSwift'
  7. s.version = '9.6.0'
  8. s.summary = 'Swift Extensions for Google Cloud Firestore'
  9. s.description = <<-DESC
  10. Google Cloud Firestore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
  11. DESC
  12. s.homepage = 'https://developers.google.com/'
  13. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  14. s.authors = 'Google, Inc.'
  15. s.source = {
  16. :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
  17. :tag => 'CocoaPods-' + s.version.to_s
  18. }
  19. s.swift_version = '5.3'
  20. s.ios.deployment_target = '11.0'
  21. s.osx.deployment_target = '10.12'
  22. s.tvos.deployment_target = '11.0'
  23. s.cocoapods_version = '>= 1.4.0'
  24. s.prefix_header_file = false
  25. s.requires_arc = true
  26. s.source_files = [
  27. 'Firestore/Swift/Source/**/*.swift',
  28. 'Firestore/third_party/FirestoreEncoder/*.swift',
  29. ]
  30. s.dependency 'FirebaseFirestore', '~> 9.0'
  31. end