-
Notifications
You must be signed in to change notification settings - Fork 16
/
ReRxSwift.podspec
25 lines (22 loc) · 1.01 KB
/
ReRxSwift.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
Pod::Spec.new do |s|
s.name = "ReRxSwift"
s.version = "2.3.0"
s.summary = "RxSwift bindings for ReSwift"
s.description = <<-DESC
ReRxSwift: RxSwift bindings for ReSwift. Heavily inspired by
react-redux, this allows you to 'connect' your controllers and specify
props and actions that your controller depends on. The real state
and actions are thus decoupled from the controller implementations.
DESC
s.homepage = "https://github.com/svdo/ReRxSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Stefan van den Oord" => "[email protected]" }
s.platform = :ios, '9.0'
s.source = { :git => "https://github.com/svdo/ReRxSwift.git", :tag => "#{s.version}" }
s.source_files = "ReRxSwift/*.swift"
s.requires_arc = true
s.swift_version = '5'
s.dependency "ReSwift", "~> 6"
s.dependency "RxSwift", "~> 6"
s.dependency "RxCocoa", "~> 6"
end