forked from grid/Pring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pring.podspec
26 lines (24 loc) · 1008 Bytes
/
Pring.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 = "Pring"
s.version = "0.13.7"
s.summary = "Firestore model framework"
s.description = <<-DESC
Pring is a framework for defining Firestore's Model. You can seamlessly manage Firestorage data and operate all values type-safely.
DESC
s.homepage = "https://github.com/1amageek/Pring"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "1amageek" => "[email protected]" }
s.social_media_url = "http://twitter.com/1amageek"
s.platform = :ios, "10.0"
# s.ios.deployment_target = "11.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/1amageek/Pring.git", :tag => "#{s.version}" }
s.source_files = "Pring/**/*.swift"
s.requires_arc = true
s.static_framework = true
s.dependency "Firebase"
s.dependency "Firebase/Firestore"
s.dependency "Firebase/Storage"
end