-
Notifications
You must be signed in to change notification settings - Fork 2
/
EasyReactSwift.podspec
25 lines (19 loc) · 1.08 KB
/
EasyReactSwift.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 = "EasyReactSwift"
s.version = "0.0.1"
s.summary = "Make reactive programming easier for you."
s.description = <<-DESC
Are you confused by the functors, applicatives, and monads in RxSwift and ReactiveCocoa? It doesn't matter, the concepts are so complicated that not many developers actually use them in normal projects. Is there an easy-to-use way to use reactive programming? EasyReact is born for this reason.
DESC
s.homepage = "https://github.com/meituan/EasyReactSwift"
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
s.author = { 'William Zang' => '[email protected]' }
s.source = { :git => "https://github.com/meituan/EasyReactSwift.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '4.2'
s.source_files = 'Sources/**/*.swift'
end