forked from RxSwiftCommunity/RxModal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxModal.podspec
More file actions
20 lines (18 loc) · 767 Bytes
/
RxModal.podspec
File metadata and controls
20 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "RxModal"
s.version = "1.1.0"
s.summary = "Subscribe to your modal flows"
s.description = <<-DESC
RxModal helps you handle any modal flow as a simple Observable sequence.
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxModal"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Jérôme Alves" => "j.alves@me.com" }
s.social_media_url = "https://twitter.com/jegnux"
s.ios.deployment_target = '9.0'
s.source = { :git => "https://github.com/RxSwiftCommunity/RxModal.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
s.dependency 'RxSwift', '~> 6.0'
s.dependency 'RxCocoa', '~> 6.0'
end