FirebaseFirestoreSwift.podspec 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 = '0.1'
  8. s.summary = 'Google Cloud Firestore for iOS Swift Extensions'
  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', :file => 'LICENSE' }
  14. s.authors = 'Google, Inc.'
  15. s.source = {
  16. :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
  17. :tag => s.version.to_s
  18. }
  19. s.swift_version = '4.0'
  20. s.ios.deployment_target = '8.0'
  21. s.cocoapods_version = '>= 1.4.0'
  22. s.static_framework = true
  23. s.prefix_header_file = false
  24. s.requires_arc = true
  25. s.source_files = [
  26. 'Firestore/Swift/Source/**/*.swift',
  27. ]
  28. s.dependency 'FirebaseFirestore', ">= 0.10.0"
  29. end