forked from RedP4nda/RPHTTPServiceClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPHTTPServiceClient.podspec
More file actions
27 lines (20 loc) · 1.04 KB
/
RPHTTPServiceClient.podspec
File metadata and controls
27 lines (20 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = 'RPHTTPServiceClient'
s.version = '2.0.0'
s.summary = 'RPHTTPServiceClient is a Type-safe JSON/HTTP client for iOS.'
s.description = <<-DESC
RPHTTPServiceClient enables anyone to simplify the way to consume webservices/APIs and map automagically the results to ObjectMapper\'s Mappable object instances
DESC
s.homepage = 'https://github.com/RedP4nda/RPHTTPServiceClient'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'MrCloud' => 'florianp37@me.com' }
s.source = { :git => 'https://github.com/RedP4nda/RPHTTPServiceClient.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Florian_MrCloud'
s.ios.deployment_target = '11.0'
s.swift_versions = ['5.1', '5.2']
s.source_files = 'RPHTTPServiceClient/Classes/**/*'
s.dependency 'Moya', '14.0.0'
s.dependency 'Moya-ObjectMapper', '2.9'
s.dependency 'ObjectMapper', '3.5.1'
s.dependency 'Alamofire', '5.0.0'
end