| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- Pod::Spec.new do |s|
- s.name = 'FirebaseSegmentation'
- s.version = '7.1.0-beta'
- s.summary = 'Firebase Segmentation SDK'
- s.description = <<-DESC
- Firebase Segmentation enables you to associate your custom application instance ID with Firebase for user segmentation.
- DESC
- s.homepage = 'https://firebase.google.com'
- s.license = { :type => 'Apache', :file => 'LICENSE' }
- s.authors = 'Google, Inc.'
- s.source = {
- :git => 'https://github.com/firebase/firebase-ios-sdk.git',
- :tag => 'Segmentation-' + s.version.to_s
- }
- s.ios.deployment_target = '10.0'
- s.osx.deployment_target = '10.12'
- s.tvos.deployment_target = '10.0'
- s.cocoapods_version = '>= 1.4.0'
- s.static_framework = true
- s.prefix_header_file = false
- s.source_files = [
- 'FirebaseSegmentation/Sources/**/*.[mh]',
- 'FirebaseCore/Sources/Private/*.h',
- ]
- s.public_header_files = 'FirebaseSegmentation/Sources/Public/*.h'
- s.dependency 'FirebaseCore', '~> 7.0'
- s.dependency 'FirebaseInstallations', '~> 7.0'
- header_search_paths = {
- 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
- }
- s.pod_target_xcconfig = {
- 'GCC_C_LANGUAGE_STANDARD' => 'c99'
- }.merge(header_search_paths)
- s.test_spec 'unit' do |unit_tests|
- unit_tests.scheme = { :code_coverage => true }
- unit_tests.source_files = 'FirebaseSegmentation/Tests/Unit/*.[mh]'
- unit_tests.dependency 'OCMock'
- unit_tests.requires_app_host = true
- end
- end
|