GoogleUtilitiesComponents.podspec 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Pod::Spec.new do |s|
  2. s.name = 'GoogleUtilitiesComponents'
  3. s.version = '1.1.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.static_framework = true
  23. s.source_files = 'GoogleUtilitiesComponents/Sources/**/*.[mh]'
  24. s.public_header_files = 'GoogleUtilitiesComponents/Sources/Public/*.h', 'GoogleUtilitiesComponents/Sources/Private/*.h'
  25. s.private_header_files = 'GoogleUtilitiesComponents/Sources/Private/*.h'
  26. s.dependency 'GoogleUtilities/Logger'
  27. s.test_spec 'unit' do |unit_tests|
  28. unit_tests.scheme = { :code_coverage => true }
  29. unit_tests.source_files = 'GoogleUtilitiesComponents/Tests/**/*.[mh]'
  30. unit_tests.requires_arc = 'GoogleUtilitiesComponents/Tests/*/*.[mh]'
  31. unit_tests.requires_app_host = true
  32. unit_tests.dependency 'OCMock'
  33. end
  34. end