GoogleUtilitiesComponents.podspec 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Pod::Spec.new do |s|
  2. s.name = 'GoogleUtilitiesComponents'
  3. s.version = '1.0.0'
  4. s.summary = 'Google Utilities Component Container for Apple platforms.'
  5. s.description = <<-DESC
  6. An internal Google utility that is a dependency injection system for libraries to depend on other
  7. libraries in a type safe and potentially weak manner.
  8. Not intended for direct public usage.
  9. DESC
  10. s.homepage = 'https://developers.google.com/'
  11. s.license = { :type => 'Apache', :file => 'LICENSE' }
  12. s.authors = 'Google, Inc.'
  13. s.source = {
  14. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  15. :tag => 'UtilitiesComponents-' + s.version.to_s
  16. }
  17. s.ios.deployment_target = '10.0'
  18. s.osx.deployment_target = '10.12'
  19. s.tvos.deployment_target = '10.0'
  20. s.cocoapods_version = '>= 1.4.0'
  21. s.prefix_header_file = false
  22. s.source_files = 'GoogleUtilitiesComponents/Sources/**/*.[mh]'
  23. s.public_header_files = 'GoogleUtilitiesComponents/Sources/Public/*.h', 'GoogleUtilitiesComponents/Sources/Private/*.h'
  24. s.private_header_files = 'GoogleUtilitiesComponents/Sources/Private/*.h'
  25. s.dependency 'GoogleUtilities/Logger'
  26. s.test_spec 'unit' do |unit_tests|
  27. unit_tests.source_files = 'GoogleUtilitiesComponents/Tests/**/*.[mh]'
  28. unit_tests.requires_arc = 'GoogleUtilitiesComponents/Tests/*/*.[mh]'
  29. unit_tests.requires_app_host = true
  30. unit_tests.dependency 'OCMock'
  31. end
  32. end