forked from pokeb/asi-http-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASIHTTPRequest.podspec.json
77 lines (77 loc) · 2.43 KB
/
ASIHTTPRequest.podspec.json
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
76
77
{
"name": "ASIHTTPRequest",
"version": "1.8.2",
"summary": "Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone.",
"homepage": "http://allseeing-i.com/ASIHTTPRequest",
"authors": {
"Ben Copsey": "[email protected]"
},
"license": "New BSD License",
"source": {
"git": "https://github.com/mohamedghonemi/asi-http-request.git",
"tag": "v1.8.2"
},
"description": "\n ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that\n makes some of the more tedious aspects of communicating with web servers\n easier. It is written in Objective-C and works in both Mac OS X and iPhone\n applications.\n\n It is suitable performing basic HTTP requests and interacting with\n REST-based services (GET / POST / PUT / DELETE). The included\n ASIFormDataRequest subclass makes it easy to submit POST data and files\n using multipart/form-data.\n\n Please note that ASIHTTPRequest is not recommended for newer projects \n since it's not actively maintained anymore. \n For more info visit: http://allseeing-i.com/%5Brequest_release%5D\n ",
"requires_arc": false,
"subspecs": [
{
"name": "Core",
"source_files": "Classes/*.{h,m}",
"ios": {
"dependencies": {
"Reachability": [
]
},
"frameworks": [
"MobileCoreServices",
"CFNetwork",
"CoreGraphics"
]
},
"osx": {
"exclude_files": "**/*ASIAuthenticationDialog*",
"frameworks": [
"SystemConfiguration",
"CoreServices"
]
},
"libraries": "z.1"
},
{
"name": "ASIWebPageRequest",
"source_files": "Classes/ASIWebPageRequest/*.{h,m}",
"libraries": "xml2.2",
"xcconfig": {
"HEADER_SEARCH_PATHS": "\"$(SDKROOT)/usr/include/libxml2\""
},
"dependencies": {
"ASIHTTPRequest/Core": [
]
}
},
{
"name": "Optimization",
"source_files": "Classes/Optimization/*.{h,m}",
"compiler_flags": "-O0"
},
{
"name": "CloudFiles",
"source_files": [
"Classes/CloudFiles/*.{h,m}",
"Classes/S3/ASINSXMLParserCompat.h"
],
"dependencies": {
"ASIHTTPRequest/Core": [
]
}
},
{
"name": "S3",
"source_files": "Classes/S3/*.{h,m}",
"dependencies": {
"ASIHTTPRequest/Core": [
]
}
}
]
}