forked from BottleRocketStudios/iOS-Hyperspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHyperspace.podspec
47 lines (40 loc) · 1.75 KB
/
Hyperspace.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Be sure to run `pod lib lint Hyperspace.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Hyperspace'
s.version = '3.1.0'
s.summary = 'An extremely lightweight wrapper around URLSession to make working with APIs a breeze.'
s.description = <<-DESC
Hyperspace attempts to take the boilerplate out of working with HTTP in your app.
Unlike other networking libraries, the goal of Hyperspace is to keep things simple and maintain a minimal (but useful) feature set.
DESC
s.homepage = 'https://github.com/BottleRocketStudios/iOS-Hyperspace'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.author = { 'Tyler Milner' => '[email protected]' }
s.source = { :git => 'https://github.com/BottleRocketStudios/iOS-Hyperspace.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.source_files = 'Sources/Hyperspace/**/*'
end
s.subspec 'Futures' do |futures|
futures.dependency 'BrightFutures', '~> 8.0.0'
futures.dependency 'Hyperspace/Core'
futures.source_files = 'Sources/Futures/**/*'
end
s.subspec 'Pinning' do |pinning|
pinning.dependency 'Hyperspace/Core'
pinning.source_files = 'Sources/Certificate\ Pinning/**/*'
pinning.ios.deployment_target = '10.0'
pinning.watchos.deployment_target = '3.0'
pinning.tvos.deployment_target = '10.0'
end
end