FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
GCDWebServer/GCDWebServer.podspec at master · Mingriweiji-github/GCDWebServer · GitHub
Mingriweiji-github
/
GCDWebServer
Public
forked from
swisspol/GCDWebServer
Notifications
You must be signed in to change notification settings
Fork
4
Star
12
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
GCDWebServer
/
GCDWebServer.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
75 lines (64 loc) · 2.41 KB
Breadcrumbs
GCDWebServer
/
GCDWebServer.podspec
Copy path
File metadata and controls
75 lines (64 loc) · 2.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# http://guides.cocoapods.org/syntax/podspec.html
# http://guides.cocoapods.org/making/getting-setup-with-trunk.html
# $ sudo gem update cocoapods
# (optional) $ pod trunk register {email} {name} --description={computer}
# $ pod trunk --verbose push
# DELETE THIS SECTION BEFORE PROCEEDING!
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'GCDWebServer'
s
.
version
=
'3.3.3'
s
.
author
=
{
'Pierre-Olivier Latour'
=>
'info@pol-online.net'
}
s
.
license
=
{
:type
=>
'BSD'
,
:file
=>
'LICENSE'
}
s
.
homepage
=
'https://github.com/swisspol/GCDWebServer'
s
.
summary
=
'Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)'
s
.
source
=
{
:git
=>
'https://github.com/swisspol/GCDWebServer.git'
,
:tag
=>
s
.
version
.
to_s
}
s
.
ios
.
deployment_target
=
'5.0'
s
.
tvos
.
deployment_target
=
'9.0'
s
.
osx
.
deployment_target
=
'10.7'
s
.
requires_arc
=
true
s
.
default_subspec
=
'Core'
s
.
subspec
'Core'
do
|
cs
|
cs
.
source_files
=
'GCDWebServer/**/*.{h,m}'
cs
.
private_header_files
=
"GCDWebServer/Core/GCDWebServerPrivate.h"
cs
.
requires_arc
=
true
cs
.
ios
.
library
=
'z'
cs
.
ios
.
frameworks
=
'MobileCoreServices'
,
'CFNetwork'
cs
.
tvos
.
library
=
'z'
cs
.
tvos
.
frameworks
=
'MobileCoreServices'
,
'CFNetwork'
cs
.
osx
.
library
=
'z'
cs
.
osx
.
framework
=
'SystemConfiguration'
end
s
.
subspec
"CocoaLumberjack"
do
|
cs
|
cs
.
dependency
'GCDWebServer/Core'
cs
.
dependency
'CocoaLumberjack'
,
'~> 2'
end
s
.
subspec
'WebDAV'
do
|
cs
|
cs
.
default_subspec
=
'Core'
cs
.
subspec
"Core"
do
|
ccs
|
ccs
.
dependency
'GCDWebServer/Core'
ccs
.
source_files
=
'GCDWebDAVServer/*.{h,m}'
ccs
.
requires_arc
=
true
ccs
.
ios
.
library
=
'xml2'
ccs
.
tvos
.
library
=
'xml2'
ccs
.
osx
.
library
=
'xml2'
ccs
.
compiler_flags
=
'-I$(SDKROOT)/usr/include/libxml2'
end
cs
.
subspec
"CocoaLumberjack"
do
|
cscl
|
cscl
.
dependency
'GCDWebServer/WebDAV/Core'
cscl
.
dependency
'GCDWebServer/CocoaLumberjack'
end
end
s
.
subspec
'WebUploader'
do
|
cs
|
cs
.
default_subspec
=
'Core'
cs
.
subspec
"Core"
do
|
ccs
|
ccs
.
dependency
'GCDWebServer/Core'
ccs
.
source_files
=
'GCDWebUploader/*.{h,m}'
ccs
.
requires_arc
=
true
ccs
.
resource
=
"GCDWebUploader/GCDWebUploader.bundle"
end
cs
.
subspec
"CocoaLumberjack"
do
|
cscl
|
cscl
.
dependency
'GCDWebServer/WebUploader/Core'
cscl
.
dependency
'GCDWebServer/CocoaLumberjack'
end
end
end
Back
|
FazBrowse Home
|
New Git URL