forked from roxiemobile/networking-api-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetworkingApi.podspec
28 lines (19 loc) · 1022 Bytes
/
NetworkingApi.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
# coding: utf-8
Pod::Spec.new do |s|
s.name = 'NetworkingApi'
s.summary = 'Networking API is an HTTP library that makes networking for iOS apps easier.'
s.version = '0.7.2'
s.platform = :ios
s.ios.deployment_target = '8.0'
s.authors = { 'Alexander Bragin' => '[email protected]', 'Denis Kolyasev' => '[email protected]' }
s.license = { type: 'BSD-4-Clause', file: 'LICENSE.txt' }
s.homepage = 'https://github.com/roxiemobile/networking-api.ios'
s.source = { git: 'https://github.com/roxiemobile/networking-api.ios.git', tag: s.version.to_s }
s.source_files = 'modules/networking-api/NetworkingApi/**/*.{h,m,swift}'
s.preserve_path = 'LICENSE.txt'
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
# External dependencies
s.dependency 'SwiftCommons', '~> 0.7.2'
s.dependency 'Alamofire', '~> 3.5'
s.dependency 'Atomic', '~> 1.0'
end