forked from 1amageek/Muni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Muni.podspec
29 lines (27 loc) · 1001 Bytes
/
Muni.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
Pod::Spec.new do |s|
s.name = "Muni"
s.version = "0.10.4"
s.summary = "Firestore message framework"
s.description = <<-DESC
Muni is a chat framework made with Firestore.
DESC
s.homepage = "https://github.com/1amageek/Muni"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "1amageek" => "tmy0x3@icloud.com" }
s.social_media_url = "http://twitter.com/1amageek"
s.platform = :ios, "10.0"
s.ios.deployment_target = "10.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/Muni.git", :tag => "#{s.version}" }
s.source_files = "Muni/**/*.{swift}"
s.resources = "Muni/**/*.{xib}"
s.requires_arc = true
s.static_framework = true
s.dependency "Pring"
s.dependency "Toolbar"
s.dependency "Firebase"
s.dependency "Firebase/Firestore"
s.dependency "Firebase/Storage"
end