-
Notifications
You must be signed in to change notification settings - Fork 17
/
Hyperspace.podspec
31 lines (26 loc) · 1.28 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
#
# 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 = '5.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.6'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.macos.deployment_target = '11.0'
s.source_files = 'Sources/**/*'
end