FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AFNetworking/AFNetworking.podspec at master · EppoFq/AFNetworking · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EppoFq
/
AFNetworking
Public
forked from
AFNetworking/AFNetworking
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AFNetworking
/
AFNetworking.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
60 lines (48 loc) · 2.04 KB
Breadcrumbs
AFNetworking
/
AFNetworking.podspec
Copy path
File metadata and controls
60 lines (48 loc) · 2.04 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
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'AFNetworking'
s
.
version
=
'2.5.4'
s
.
license
=
'MIT'
s
.
summary
=
'A delightful iOS and OS X networking framework.'
s
.
homepage
=
'https://github.com/AFNetworking/AFNetworking'
s
.
social_media_url
=
'https://twitter.com/AFNetworking'
s
.
authors
=
{
'Mattt Thompson'
=>
'm@mattt.me'
}
s
.
source
=
{
:git
=>
'https://github.com/AFNetworking/AFNetworking.git'
,
:tag
=>
s
.
version
,
:submodules
=>
true
}
s
.
requires_arc
=
true
s
.
ios
.
deployment_target
=
'6.0'
s
.
osx
.
deployment_target
=
'10.8'
s
.
public_header_files
=
'AFNetworking/*.h'
s
.
source_files
=
'AFNetworking/AFNetworking.h'
s
.
subspec
'Serialization'
do
|
ss
|
ss
.
source_files
=
'AFNetworking/AFURL{Request,Response}Serialization.{h,m}'
ss
.
ios
.
frameworks
=
'MobileCoreServices'
,
'CoreGraphics'
ss
.
osx
.
frameworks
=
'CoreServices'
end
s
.
subspec
'Security'
do
|
ss
|
ss
.
source_files
=
'AFNetworking/AFSecurityPolicy.{h,m}'
ss
.
frameworks
=
'Security'
end
s
.
subspec
'Reachability'
do
|
ss
|
ss
.
source_files
=
'AFNetworking/AFNetworkReachabilityManager.{h,m}'
ss
.
frameworks
=
'SystemConfiguration'
end
s
.
subspec
'NSURLConnection'
do
|
ss
|
ss
.
dependency
'AFNetworking/Serialization'
ss
.
dependency
'AFNetworking/Reachability'
ss
.
dependency
'AFNetworking/Security'
ss
.
source_files
=
'AFNetworking/AFURLConnectionOperation.{h,m}'
,
'AFNetworking/AFHTTPRequestOperation.{h,m}'
,
'AFNetworking/AFHTTPRequestOperationManager.{h,m}'
end
s
.
subspec
'NSURLSession'
do
|
ss
|
ss
.
dependency
'AFNetworking/Serialization'
ss
.
dependency
'AFNetworking/Reachability'
ss
.
dependency
'AFNetworking/Security'
ss
.
source_files
=
'AFNetworking/AFURLSessionManager.{h,m}'
,
'AFNetworking/AFHTTPSessionManager.{h,m}'
end
s
.
subspec
'UIKit'
do
|
ss
|
ss
.
ios
.
deployment_target
=
'6.0'
ss
.
dependency
'AFNetworking/NSURLConnection'
ss
.
dependency
'AFNetworking/NSURLSession'
ss
.
ios
.
public_header_files
=
'UIKit+AFNetworking/*.h'
ss
.
ios
.
source_files
=
'UIKit+AFNetworking'
ss
.
osx
.
source_files
=
''
end
end
Back
|
FazBrowse Home
|
New Git URL