forked from urban-health-labs/CombineFirebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CombineFirebase.podspec
73 lines (55 loc) · 2.31 KB
/
CombineFirebase.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#
# Be sure to run `pod lib lint CombineFirebase.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'CombineFirebase'
s.version = '0.2.6'
s.summary = 'Combine extensions for Firebase'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Combine extensions for Firebase
Including for now Firestore
DESC
s.homepage = 'https://github.com/rever-ai/CombineFirebase'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'kshivang' => '[email protected]' }
s.source = { :git => 'https://github.com/rever-ai/CombineFirebase.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
#s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.static_framework = true
s.swift_version = '5.1'
s.subspec 'Firestore' do |firestore|
firestore.dependency 'CombineFirebaseFirestore', '~> 0.2'
firestore.source_files = "Sources/Core/Firestore.swift"
end
s.subspec 'RemoteConfig' do |remote|
remote.dependency 'CombineFirebaseRemoteConfig', '~> 0.2'
remote.source_files = "Sources/Core/RemoteConfig.swift"
end
s.subspec 'Database' do |database|
database.dependency 'CombineFirebaseDatabase', '~> 0.2'
database.source_files = "Sources/Core/Database.swift"
end
s.subspec 'Storage' do |storage|
storage.dependency 'CombineFirebaseStorage', '~> 0.2'
storage.source_files = "Sources/Core/Storage.swift"
end
s.subspec 'Functions' do |functions|
functions.dependency 'CombineFirebaseFunctions', '~> 0.2'
functions.source_files = "Sources/Core/Functions.swift"
end
s.subspec 'Auth' do |auth|
auth.dependency 'CombineFirebaseAuthentication', '~> 0.2'
auth.source_files = "Sources/Core/Auth.swift"
end
end