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