forked from STDevTM/RxRestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxRestClient.podspec
More file actions
29 lines (21 loc) · 1022 Bytes
/
RxRestClient.podspec
File metadata and controls
29 lines (21 loc) · 1022 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
25
26
27
28
29
Pod::Spec.new do |s|
s.name = 'RxRestClient'
s.version = '1.0.3'
s.summary = 'Simple REST Client based on RxSwift and Alamofire.'
s.description = <<-DESC
Reactive way to interct with REST API. Send request and get responses easily. Handling basic response cases by default, for example: Not Found, Unauthorized, etc.
DESC
s.homepage = 'https://github.com/stdevteam/RxRestClient'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tigran Hambardzumyan' => 'tigran@stdevmail.com' }
s.source = { :git => 'https://github.com/stdevteam/RxRestClient.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.3'
s.source_files = 'RxRestClient/Classes/**/*'
# s.resource_bundles = {
# 'RxRestClient' => ['RxRestClient/Assets/*.png']
# }
s.dependency 'RxSwift', '~> 4'
s.dependency 'RxCocoa', '~> 4'
s.dependency 'Alamofire', '~> 4'
s.dependency 'RxAlamofire', '~> 4'
end