-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQwikHttp.podspec
52 lines (44 loc) · 2.06 KB
/
QwikHttp.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
48
49
50
51
52
#
# Be sure to run `pod lib lint QwikHttp.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 = "QwikHttp"
s.version = "1.13.6"
s.summary = "QwikHTTP is a simple, super powerful Http Networking library."
s.description = <<-DESC
QwikHttp is based around that making HTTP networking calls to your Rest APIs should be quick,
easy, and clean. Qwik Http allows you to send http requests and get its results back in a single line of code
It is super, light weight- but very dynamic. It uses an inline builder style syntax to keep your code super clean.
It is written in swift and uses the most recent ios networking api, NSURLSession.
DESC
s.homepage = "https://github.com/logansease/QwikHttp"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Logan Sease" => "lsease@gmail.com" }
s.source = { :git => "https://github.com/logansease/QwikHttp.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/logansease'
s.swift_version = '5.0'
s.tvos.deployment_target = '13.0'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'
s.requires_arc = true
s.source_files = 'QwikHttp/Classes/**/*'
s.dependency 'QwikJson'
s.pod_target_xcconfig = {
'CODE_SIGN_IDENTITY[sdk=iphoneos*]' => '',
'CODE_SIGNING_REQUIRED' => 'NO',
'CODE_SIGNING_ALLOWED' => 'NO',
'LD_RUNPATH_SEARCH_PATHS' => '$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(TOOLCHAIN_DIR)/usr/lib/swift/macosx'
}
s.user_target_xcconfig = {
'CODE_SIGN_IDENTITY[sdk=iphoneos*]' => '',
'CODE_SIGNING_REQUIRED' => 'NO',
'CODE_SIGNING_ALLOWED' => 'NO',
'LD_RUNPATH_SEARCH_PATHS' => '$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(TOOLCHAIN_DIR)/usr/lib/swift/macosx'
}
end