| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- Pod::Spec.new do |s|
- s.name = 'FirebaseAuth'
- s.version = '6.5.2'
- s.summary = 'Apple platform client for Firebase Authentication'
- s.description = <<-DESC
- Firebase Authentication allows you to manage your own account system without any backend code. It
- supports email and password accounts, as well as several 3rd party authentication mechanisms.
- 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 => 'Auth-' + s.version.to_s
- }
- s.social_media_url = 'https://twitter.com/Firebase'
- s.ios.deployment_target = '8.0'
- s.osx.deployment_target = '10.11'
- s.tvos.deployment_target = '10.0'
- s.watchos.deployment_target = '6.0'
- s.cocoapods_version = '>= 1.4.0'
- s.static_framework = true
- s.prefix_header_file = false
- source = 'FirebaseAuth/Sources/'
- s.source_files = source + '**/*.[mh]'
- s.public_header_files = source + 'Public/*.h'
- s.preserve_paths = [
- 'FirebaseAuth/README.md',
- 'FirebaseAuth/CHANGELOG.md'
- ]
- s.pod_target_xcconfig = {
- 'GCC_C_LANGUAGE_STANDARD' => 'c99',
- 'GCC_PREPROCESSOR_DEFINITIONS' =>
- 'FIRAuth_VERSION=' + s.version.to_s +
- ' FIRAuth_MINOR_VERSION=' + s.version.to_s.split(".")[0] + "." + s.version.to_s.split(".")[1],
- 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
- }
- s.framework = 'Security'
- s.ios.framework = 'SafariServices'
- s.dependency 'FirebaseAuthInterop', '~> 1.0'
- s.dependency 'FirebaseCore', '~> 6.6'
- s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 6.5'
- s.dependency 'GoogleUtilities/Environment', '~> 6.5'
- s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
- s.test_spec 'unit' do |unit_tests|
- unit_tests.platforms = {:ios => '8.0', :osx => '10.11', :tvos => '10.0'}
- unit_tests.source_files = 'FirebaseAuth/Tests/Unit/*.[mh]'
- unit_tests.osx.exclude_files = [
- 'FirebaseAuth/Tests/Unit/FIRAuthAPNSTokenManagerTests.m',
- 'FirebaseAuth/Tests/Unit/FIRAuthAPNSTokenTests.m',
- 'FirebaseAuth/Tests/Unit/FIRAuthAppCredentialManagerTests.m',
- 'FirebaseAuth/Tests/Unit/FIRAuthNotificationManagerTests.m',
- 'FirebaseAuth/Tests/Unit/FIRAuthURLPresenterTests.m',
- 'FirebaseAuth/Tests/Unit/FIREmailLink*',
- 'FirebaseAuth/Tests/Unit/FIRPhoneAuthProviderTests.m',
- 'FirebaseAuth/Tests/Unit/FIRSendVerificationCode*',
- 'FirebaseAuth/Tests/Unit/FIRSignInWithGameCenterTests.m',
- 'FirebaseAuth/Tests/Unit/FIRVerifyClient*',
- 'FirebaseAuth/Tests/Unit/FIRVerifyPhoneNumber*',
- 'FirebaseAuth/Tests/Unit/FIROAuthProviderTests.m',
- ]
- unit_tests.tvos.exclude_files = [
- 'FirebaseAuth/Tests/Unit/FIRAuthAPNSTokenManagerTests.m',
- 'FirebaseAuth/Tests/Unit/FIRAuthNotificationManagerTests.m',
- 'FirebaseAuth/Tests/Unit/FIRAuthURLPresenterTests.m',
- 'FirebaseAuth/Tests/Unit/FIREmailLink*',
- 'FirebaseAuth/Tests/Unit/FIRPhoneAuthProviderTests.m',
- 'FirebaseAuth/Tests/Unit/FIRSendVerificationCode*',
- 'FirebaseAuth/Tests/Unit/FIRSignInWithGameCenterTests.m',
- 'FirebaseAuth/Tests/Unit/FIRVerifyClient*',
- 'FirebaseAuth/Tests/Unit/FIRVerifyPhoneNumber*',
- 'FirebaseAuth/Tests/Unit/FIROAuthProviderTests.m',
- ]
- # app_host is needed for tests with keychain
- unit_tests.requires_app_host = true
- unit_tests.dependency 'OCMock'
- end
- end
|