forked from BeihaoZhang/EasyReact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EasyReact.podspec
29 lines (19 loc) · 1.23 KB
/
EasyReact.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
Pod::Spec.new do |s|
s.name = 'EasyReact'
s.version = '2.2.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/EasyReact'
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
s.author = { 'William Zang' => '[email protected]', '姜沂' => '[email protected]', 'Qin Hong' => '[email protected]'}
s.source = { :git => 'https://github.com/meituan/EasyReact.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.module_map = 'EasyReact/EasyReact.modulemap'
s.source_files = 'EasyReact/Classes/**/*'
s.requires_arc = 'EasyReact/Classes/{Utils,Core,Categories}/**/*.m'
s.requires_arc = true
s.private_header_files = ['EasyReact/Classes/Core/Private/**/*.h', 'EasyReact/Classes/Core/ListenEdges/**/*.h']
s.dependency 'EasyFoundation', '~> 1.0.0'
end