blob: 371f3e0c7722d2829fb0b6ef2f99ce339b2a230c (
plain)
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
|
Pod::Spec.new do |s|
s.name = 'FirebaseFunctions'
s.version = '2.1.0'
s.summary = 'Cloud Functions for Firebase iOS SDK.'
s.description = <<-DESC
iOS SDK for Cloud Functions for Firebase.
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 => 'Functions-' + s.version.to_s
}
s.ios.deployment_target = '8.0'
s.cocoapods_version = '>= 1.4.0'
s.static_framework = true
s.prefix_header_file = false
s.source_files = 'Functions/FirebaseFunctions/**/*'
s.public_header_files = 'Functions/FirebaseFunctions/Public/*.h'
s.dependency 'FirebaseCore', '~> 5.0'
s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
end
|