-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
FireSnapshot.podspec
26 lines (24 loc) · 957 Bytes
/
FireSnapshot.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
Pod::Spec.new do |s|
s.name = "FireSnapshot"
s.version = "0.11.1"
s.summary = "Firebase Cloud Firestore Model Framework using Codable."
s.homepage = "https://github.com/sgr-ksmt/#{s.name}"
s.license = 'MIT'
s.author = { "Suguru Kishimoto" => "[email protected]" }
s.source = { :git => "#{s.homepage}.git", :tag => s.version.to_s }
s.platform = :ios, '11.0'
s.requires_arc = true
s.static_framework = true
s.swift_version = "5.1"
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = "FireSnapshot/Sources/Core/**/*.swift"
ss.dependency "Firebase/Firestore", "~> 6.12"
ss.dependency "FirebaseFirestoreSwift", "~> 0.2"
end
s.subspec 'Storage' do |ss|
ss.source_files = "FireSnapshot/Sources/Storage/*.swift"
ss.dependency "FireSnapshot/Core"
ss.dependency "Firebase/Storage", "~> 6.12"
end
end