forked from RxSwiftCommunity/RxFirebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxFirebaseAuthentication.podspec
35 lines (29 loc) · 1.45 KB
/
RxFirebaseAuthentication.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
Pod::Spec.new do |s|
s.name = 'RxFirebaseAuthentication'
s.version = '0.3.8'
s.summary = 'RxSwift extensions for FirebaseAuth.'
# 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
RxSwift extensions for FirebaseAuth.
DESC
s.homepage = 'https://github.com/RxSwiftCommunity/RxFirebase'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Arnaud Dorgans' => 'arnaud.dorgans@gmail.com' }
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxFirebase.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.cocoapods_version = '>= 1.4.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '10.0'
s.static_framework = true
s.dependency 'RxSwift', '~> 5'
s.dependency 'RxCocoa', '~> 5'
s.dependency 'FirebaseAuth', '~> 6'
s.dependency 'FirebaseCore', '~> 6'
s.source_files = 'Sources/Auth/**/*'
end