-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxAlamoRecord.podspec
30 lines (23 loc) · 1.07 KB
/
RxAlamoRecord.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
30
Pod::Spec.new do |s|
s.name = 'RxAlamoRecord'
s.version = '2.3.0'
s.summary = 'An elegant Reactive wrapper around AlamoRecord.'
s.description = <<-DESC
RxAlamoRecord combines the power of the AlamoRecord and RxSwift libraries to create a networking layer that makes interacting with API's easier than ever reactively.
DESC
s.homepage = 'https://github.com/Daltron/RxAlamoRecord'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daltron' => '[email protected]' }
s.source = { :git => 'https://github.com/Daltron/RxAlamoRecord.git', :tag => s.version.to_s }
s.swift_version = '5.1'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'RxAlamoRecord/Classes/**/*'
s.requires_arc = true
s.dependency 'AlamoRecord', '~> 2.3.0'
s.dependency 'RxSwift', '~> 5.1.0'
s.dependency 'RxCocoa', '~> 5.1.0'
s.dependency 'Action', '~> 4.0.0'
end