forked from pixeldock/RxAppState
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxAppState.podspec
More file actions
24 lines (20 loc) · 941 Bytes
/
RxAppState.podspec
File metadata and controls
24 lines (20 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "RxAppState"
s.version = "1.5.2"
s.swift_versions = ['5.0']
s.summary = "Handy RxSwift extensions to observe your app's state and view controllers' view-related notifications"
s.description = <<-DESC
Transform the state of your App and UIViewController's view-related notifications into RxSwift Observables. Including convenience Observables for common scenarios.
DESC
s.homepage = "https://github.com/pixeldock/RxAppState"
s.license = 'MIT'
s.author = { "Jörn Schoppe" => "joern@pixeldock.com" }
s.source = { :git => "https://github.com/pixeldock/RxAppState.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/pixeldock'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'Foundation'
s.dependency 'RxSwift', '~> 5.0'
s.dependency 'RxCocoa', '~> 5.0'
end