jazzy 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/bin/sourcekitten +0 -0
- data/lib/jazzy/config.rb +1 -1
- data/lib/jazzy/doc_builder.rb +8 -5
- data/lib/jazzy/gem_version.rb +1 -1
- data/lib/jazzy/jazzy_markdown.rb +1 -1
- data/lib/jazzy/sourcekitten.rb +2 -4
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/{Singleton.html → init(configuration:).html} +11 -51
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager.html +4 -214
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request.html +41 -626
- data/spec/integration_specs/document_alamofire/after/docs/Classes.html +4 -24
- data/spec/integration_specs/document_alamofire/after/docs/Enums/ParameterEncoding.html +16 -76
- data/spec/integration_specs/document_alamofire/after/docs/Enums.html +5 -25
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Manager.html +4 -64
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request.html +4 -24
- data/spec/integration_specs/document_alamofire/after/docs/Extensions.html +4 -64
- data/spec/integration_specs/document_alamofire/after/docs/Functions.html +4 -44
- data/spec/integration_specs/document_alamofire/after/docs/Global Variables.html +4 -24
- data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLRequestConvertible.html +4 -24
- data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLStringConvertible.html +4 -24
- data/spec/integration_specs/document_alamofire/after/docs/Protocols.html +4 -24
- data/spec/integration_specs/document_alamofire/after/docs/index.html +4 -24
- data/spec/integration_specs/document_alamofire/after/execution_output.txt +3 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/Classes/ImplicitlyInternalTopLevelClass.html +0 -6
- data/spec/integration_specs/misc_jazzy_features/after/docs/Classes.html +0 -23
- data/spec/integration_specs/misc_jazzy_features/after/docs/Enums/DocumentedEnum.html +0 -6
- data/spec/integration_specs/misc_jazzy_features/after/docs/Enums.html +0 -23
- data/spec/integration_specs/misc_jazzy_features/after/docs/Global Variables.html +0 -6
- data/spec/integration_specs/misc_jazzy_features/after/docs/index.html +0 -6
- data/spec/integration_specs/misc_jazzy_features/after/execution_output.txt +3 -0
- metadata +2 -13
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/SessionDelegate.html +0 -865
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request/DataTaskDelegate.html +0 -485
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request/TaskDelegate.html +0 -505
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURL.html +0 -225
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURLComponents.html +0 -225
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURLRequest.html +0 -225
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/DownloadTaskDelegate.html +0 -405
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/MIMEType.html +0 -285
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/UploadTaskDelegate.html +0 -265
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/String.html +0 -225
- data/spec/integration_specs/document_alamofire/after/docs/Typealiases.html +0 -265
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcbf0acafd886b04fccfbc668e1a73e15fff8a2f
|
|
4
|
+
data.tar.gz: eb85a3af85e337fd1b9e97fc69b115b19c4c9ee3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f9890697e92f3a7dd0f231a351a50dbf5968a9e41bb991d8702285a1b1388f6ca5325e2fddc87ab9b617f113be26207fd2d246a61eddb6245f38bb64589ab42
|
|
7
|
+
data.tar.gz: 6cf1232147a9c77636855c6b720ec87ebac64b85a84698963f9c6fdd71092d709556b934580af24cb38fae289f06beb8e9263070596c6f4c3ff14f4f98fdaf37
|
data/Gemfile.lock
CHANGED
data/bin/sourcekitten
CHANGED
|
Binary file
|
data/lib/jazzy/config.rb
CHANGED
data/lib/jazzy/doc_builder.rb
CHANGED
|
@@ -40,13 +40,16 @@ module Jazzy
|
|
|
40
40
|
file.close
|
|
41
41
|
build_docs_for_sourcekitten_output(file_contents, options)
|
|
42
42
|
else
|
|
43
|
-
stdout
|
|
44
|
-
|
|
43
|
+
stdout = SourceKitten.run_sourcekitten(options.xcodebuild_arguments)
|
|
44
|
+
exitstatus = $?.exitstatus
|
|
45
|
+
if exitstatus == 0
|
|
46
|
+
warn 'building site'
|
|
45
47
|
build_docs_for_sourcekitten_output(stdout, options)
|
|
46
48
|
else
|
|
47
|
-
warn stderr
|
|
48
49
|
warn 'Please pass in xcodebuild arguments using -x'
|
|
49
|
-
|
|
50
|
+
warn 'If build arguments are correct, please file an issue on ' \
|
|
51
|
+
'https://github.com/realm/jazzy/issues'
|
|
52
|
+
exit exitstatus || 1
|
|
50
53
|
end
|
|
51
54
|
end
|
|
52
55
|
end
|
|
@@ -121,7 +124,7 @@ module Jazzy
|
|
|
121
124
|
|
|
122
125
|
doc[:name] = doc_model.name
|
|
123
126
|
doc[:kind] = doc_model.kindName
|
|
124
|
-
doc[:overview] = Jazzy.markdown.render(doc_model.abstract)
|
|
127
|
+
doc[:overview] = Jazzy.markdown.render(doc_model.abstract || '')
|
|
125
128
|
doc[:tasks] = []
|
|
126
129
|
doc[:structure] = doc_structure
|
|
127
130
|
# @todo parse mark-style comments and use as task names
|
data/lib/jazzy/gem_version.rb
CHANGED
data/lib/jazzy/jazzy_markdown.rb
CHANGED
data/lib/jazzy/sourcekitten.rb
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
require 'active_support/inflector'
|
|
2
2
|
require 'json'
|
|
3
|
-
require 'open3'
|
|
4
3
|
|
|
5
4
|
require 'jazzy/config'
|
|
6
5
|
require 'jazzy/source_declaration'
|
|
@@ -68,11 +67,10 @@ module Jazzy
|
|
|
68
67
|
docs
|
|
69
68
|
end
|
|
70
69
|
|
|
71
|
-
# Run sourcekitten with given arguments and return
|
|
72
|
-
# STDOUT, STDERR and exit status
|
|
70
|
+
# Run sourcekitten with given arguments and return STDOUT
|
|
73
71
|
def self.run_sourcekitten(arguments)
|
|
74
72
|
bin_path = File.expand_path(File.join(File.dirname(__FILE__), '../../bin'))
|
|
75
|
-
|
|
73
|
+
`#{bin_path}/sourcekitten #{(arguments).join(' ')}`
|
|
76
74
|
end
|
|
77
75
|
|
|
78
76
|
def self.make_source_declarations(docs)
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
|
-
<title>
|
|
4
|
+
<title>init(configuration:) Instance Method Reference</title>
|
|
5
5
|
<link rel="stylesheet" type="text/css" href="../../css/jazzy.css" />
|
|
6
6
|
<meta charset='utf-8'>
|
|
7
7
|
<script src="../../js/jquery.min.js" defer></script>
|
|
8
8
|
<script src="../../js/jazzy.js" defer></script>
|
|
9
9
|
</head>
|
|
10
10
|
<body id="reference" class="Swift">
|
|
11
|
-
<a title="
|
|
11
|
+
<a title="init(configuration:) Instance Method Reference"></a>
|
|
12
12
|
<header>
|
|
13
13
|
<div class="content-wrapper">
|
|
14
14
|
<p class="header-text"><a href="#">Alamofire Docs</a></p>
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<p id="hierarchial_navigation">
|
|
21
21
|
<a href="#" id="design_resources_link">Alamofire Reference</a>
|
|
22
22
|
<img id="carat" src="../../img/carat.png" height="10px" width="6px" />
|
|
23
|
-
|
|
23
|
+
init(configuration:) Instance Method Reference
|
|
24
24
|
</p>
|
|
25
25
|
</div>
|
|
26
26
|
</section>
|
|
@@ -61,19 +61,13 @@
|
|
|
61
61
|
<a href="../../Extensions.html">Extensions</a>
|
|
62
62
|
<ul class="nav-chapters">
|
|
63
63
|
<li class="nav-chapter">
|
|
64
|
-
<a href="../../Extensions
|
|
64
|
+
<a href="../../Extensions.html#/s:SS">String</a>
|
|
65
65
|
</li>
|
|
66
66
|
<li class="nav-chapter">
|
|
67
|
-
<a href="../../Extensions
|
|
67
|
+
<a href="../../Extensions.html#/c:objc(cs)NSURLRequest">NSURLRequest</a>
|
|
68
68
|
</li>
|
|
69
69
|
<li class="nav-chapter">
|
|
70
|
-
<a href="../../Extensions
|
|
71
|
-
</li>
|
|
72
|
-
<li class="nav-chapter">
|
|
73
|
-
<a href="../../Extensions/NSURLRequest.html">NSURLRequest</a>
|
|
74
|
-
</li>
|
|
75
|
-
<li class="nav-chapter">
|
|
76
|
-
<a href="../../Extensions/NSURLRequest.html">NSURLRequest</a>
|
|
70
|
+
<a href="../../Extensions.html#/c:objc(cs)NSURLRequest">NSURLRequest</a>
|
|
77
71
|
</li>
|
|
78
72
|
<li class="nav-chapter">
|
|
79
73
|
<a href="../../Extensions/Request.html">Request</a>
|
|
@@ -82,7 +76,7 @@
|
|
|
82
76
|
<a href="../../Extensions/Manager.html">Manager</a>
|
|
83
77
|
</li>
|
|
84
78
|
<li class="nav-chapter">
|
|
85
|
-
<a href="../../Extensions
|
|
79
|
+
<a href="../../Extensions.html#/s:C9Alamofire7Request">Request</a>
|
|
86
80
|
</li>
|
|
87
81
|
<li class="nav-chapter">
|
|
88
82
|
<a href="../../Extensions/Manager.html">Manager</a>
|
|
@@ -110,9 +104,6 @@
|
|
|
110
104
|
<li class="part-name tasks">
|
|
111
105
|
<a href="../../Functions.html">Functions</a>
|
|
112
106
|
<ul class="nav-chapters">
|
|
113
|
-
<li class="nav-chapter">
|
|
114
|
-
<a href="../../Functions.html#/s:F9AlamofireP33_A313450CFC1FC3D0CBEF4411412DB9E810URLRequestFTOS_6MethodPS_20URLStringConvertible__CSo12NSURLRequest">URLRequest(_:_:)</a>
|
|
115
|
-
</li>
|
|
116
107
|
<li class="nav-chapter">
|
|
117
108
|
<a href="../../Functions.html#/s:F9Alamofire7requestFTOS_6MethodPS_20URLStringConvertible_10parametersGSqGVSs10DictionarySSPSs9AnyObject___8encodingOS_17ParameterEncoding_CS_7Request">request(_:_:parameters:encoding:)</a>
|
|
118
109
|
</li>
|
|
@@ -159,27 +150,16 @@
|
|
|
159
150
|
</li>
|
|
160
151
|
</ul>
|
|
161
152
|
</li>
|
|
162
|
-
<li class="part-name tasks">
|
|
163
|
-
<a href="../../Typealiases.html">Typealiases</a>
|
|
164
|
-
<ul class="nav-chapters">
|
|
165
|
-
<li class="nav-chapter">
|
|
166
|
-
<a href="../../Typealiases.html#/s:C9Alamofire7Request10Validation">Validation</a>
|
|
167
|
-
</li>
|
|
168
|
-
<li class="nav-chapter">
|
|
169
|
-
<a href="../../Typealiases.html#/s:C9Alamofire7Request23DownloadFileDestination">DownloadFileDestination</a>
|
|
170
|
-
</li>
|
|
171
|
-
</ul>
|
|
172
|
-
</li>
|
|
173
153
|
</ul>
|
|
174
154
|
</nav>
|
|
175
155
|
<div class="pixel-line"></div>
|
|
176
156
|
<div class="rubber-band-gap"></div>
|
|
177
157
|
<article class="chapter">
|
|
178
158
|
<a name="/"></a>
|
|
179
|
-
<h1 class="chapter-name">
|
|
159
|
+
<h1 class="chapter-name">init(configuration:)</h1>
|
|
180
160
|
<section>
|
|
181
161
|
<section class="section">
|
|
182
|
-
|
|
162
|
+
|
|
183
163
|
</section>
|
|
184
164
|
<section class="section task-group-section">
|
|
185
165
|
<div class="task-group">
|
|
@@ -193,28 +173,8 @@
|
|
|
193
173
|
<li class="item symbol">
|
|
194
174
|
<div class="task-group-term">
|
|
195
175
|
<code>
|
|
196
|
-
<a name="/s:
|
|
197
|
-
<a class="x-instance-method Swift" href="#/s:
|
|
198
|
-
</code>
|
|
199
|
-
</div>
|
|
200
|
-
<div class="height-container">
|
|
201
|
-
<div class="pointy-thing-container"></div>
|
|
202
|
-
<section class="section instance-method">
|
|
203
|
-
<div class="pointy-thing"></div>
|
|
204
|
-
<div class="abstract">
|
|
205
|
-
<p class="para">Undocumented</p>
|
|
206
|
-
</div>
|
|
207
|
-
<div class="result-description view-on-github">
|
|
208
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L0">Show on GitHub</a>
|
|
209
|
-
</div>
|
|
210
|
-
</section>
|
|
211
|
-
</div>
|
|
212
|
-
</li>
|
|
213
|
-
<li class="item symbol">
|
|
214
|
-
<div class="task-group-term">
|
|
215
|
-
<code>
|
|
216
|
-
<a name="/s:vVFC9Alamofire7Managerg14sharedInstanceS0_L_9Singleton8instanceS0_">
|
|
217
|
-
<a class="x-instance-method Swift" href="#/s:vVFC9Alamofire7Managerg14sharedInstanceS0_L_9Singleton8instanceS0_">instance</a>
|
|
176
|
+
<a name="/s:vFC9Alamofire7ManagercFMS0_FT13configurationGSqCSo25NSURLSessionConfiguration__S0_L_13configurationGSqS1__">
|
|
177
|
+
<a class="x-instance-method Swift" href="#/s:vFC9Alamofire7ManagercFMS0_FT13configurationGSqCSo25NSURLSessionConfiguration__S0_L_13configurationGSqS1__">configuration</a>
|
|
218
178
|
</code>
|
|
219
179
|
</div>
|
|
220
180
|
<div class="height-container">
|
|
@@ -61,19 +61,13 @@
|
|
|
61
61
|
<a href="../Extensions.html">Extensions</a>
|
|
62
62
|
<ul class="nav-chapters">
|
|
63
63
|
<li class="nav-chapter">
|
|
64
|
-
<a href="../Extensions
|
|
64
|
+
<a href="../Extensions.html#/s:SS">String</a>
|
|
65
65
|
</li>
|
|
66
66
|
<li class="nav-chapter">
|
|
67
|
-
<a href="../Extensions
|
|
67
|
+
<a href="../Extensions.html#/c:objc(cs)NSURLRequest">NSURLRequest</a>
|
|
68
68
|
</li>
|
|
69
69
|
<li class="nav-chapter">
|
|
70
|
-
<a href="../Extensions
|
|
71
|
-
</li>
|
|
72
|
-
<li class="nav-chapter">
|
|
73
|
-
<a href="../Extensions/NSURLRequest.html">NSURLRequest</a>
|
|
74
|
-
</li>
|
|
75
|
-
<li class="nav-chapter">
|
|
76
|
-
<a href="../Extensions/NSURLRequest.html">NSURLRequest</a>
|
|
70
|
+
<a href="../Extensions.html#/c:objc(cs)NSURLRequest">NSURLRequest</a>
|
|
77
71
|
</li>
|
|
78
72
|
<li class="nav-chapter">
|
|
79
73
|
<a href="../Extensions/Request.html">Request</a>
|
|
@@ -82,7 +76,7 @@
|
|
|
82
76
|
<a href="../Extensions/Manager.html">Manager</a>
|
|
83
77
|
</li>
|
|
84
78
|
<li class="nav-chapter">
|
|
85
|
-
<a href="../Extensions
|
|
79
|
+
<a href="../Extensions.html#/s:C9Alamofire7Request">Request</a>
|
|
86
80
|
</li>
|
|
87
81
|
<li class="nav-chapter">
|
|
88
82
|
<a href="../Extensions/Manager.html">Manager</a>
|
|
@@ -110,9 +104,6 @@
|
|
|
110
104
|
<li class="part-name tasks">
|
|
111
105
|
<a href="../Functions.html">Functions</a>
|
|
112
106
|
<ul class="nav-chapters">
|
|
113
|
-
<li class="nav-chapter">
|
|
114
|
-
<a href="../Functions.html#/s:F9AlamofireP33_A313450CFC1FC3D0CBEF4411412DB9E810URLRequestFTOS_6MethodPS_20URLStringConvertible__CSo12NSURLRequest">URLRequest(_:_:)</a>
|
|
115
|
-
</li>
|
|
116
107
|
<li class="nav-chapter">
|
|
117
108
|
<a href="../Functions.html#/s:F9Alamofire7requestFTOS_6MethodPS_20URLStringConvertible_10parametersGSqGVSs10DictionarySSPSs9AnyObject___8encodingOS_17ParameterEncoding_CS_7Request">request(_:_:parameters:encoding:)</a>
|
|
118
109
|
</li>
|
|
@@ -159,17 +150,6 @@
|
|
|
159
150
|
</li>
|
|
160
151
|
</ul>
|
|
161
152
|
</li>
|
|
162
|
-
<li class="part-name tasks">
|
|
163
|
-
<a href="../Typealiases.html">Typealiases</a>
|
|
164
|
-
<ul class="nav-chapters">
|
|
165
|
-
<li class="nav-chapter">
|
|
166
|
-
<a href="../Typealiases.html#/s:C9Alamofire7Request10Validation">Validation</a>
|
|
167
|
-
</li>
|
|
168
|
-
<li class="nav-chapter">
|
|
169
|
-
<a href="../Typealiases.html#/s:C9Alamofire7Request23DownloadFileDestination">DownloadFileDestination</a>
|
|
170
|
-
</li>
|
|
171
|
-
</ul>
|
|
172
|
-
</li>
|
|
173
153
|
</ul>
|
|
174
154
|
</nav>
|
|
175
155
|
<div class="pixel-line"></div>
|
|
@@ -190,66 +170,6 @@
|
|
|
190
170
|
</a>
|
|
191
171
|
</div>
|
|
192
172
|
<ul class="task-group-list">
|
|
193
|
-
<li class="item symbol">
|
|
194
|
-
<div class="task-group-term">
|
|
195
|
-
<code>
|
|
196
|
-
<a name="/s:vC9Alamofire7Manager14sharedInstanceS0_">
|
|
197
|
-
<a class="x-instance-method Swift" href="#/s:vC9Alamofire7Manager14sharedInstanceS0_">sharedInstance</a>
|
|
198
|
-
</code>
|
|
199
|
-
</div>
|
|
200
|
-
<div class="height-container">
|
|
201
|
-
<div class="pointy-thing-container"></div>
|
|
202
|
-
<section class="section instance-method">
|
|
203
|
-
<div class="pointy-thing"></div>
|
|
204
|
-
<div class="abstract">
|
|
205
|
-
<p class="para">A shared instance of <code>Manager</code>, used by top-level Alamofire request methods, and suitable for use directly for any ad hoc requests.</p>
|
|
206
|
-
</div>
|
|
207
|
-
<div class="declaration">
|
|
208
|
-
<h4>Declaration</h4>
|
|
209
|
-
|
|
210
|
-
<div class="Swift">
|
|
211
|
-
<p class="aside-title">Swift</p>
|
|
212
|
-
<p class="para">
|
|
213
|
-
<code>public class var sharedInstance: Manager { get }</code>
|
|
214
|
-
</p>
|
|
215
|
-
</div>
|
|
216
|
-
</div>
|
|
217
|
-
<div class="result-description view-on-github">
|
|
218
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L220">Show on GitHub</a>
|
|
219
|
-
</div>
|
|
220
|
-
</section>
|
|
221
|
-
</div>
|
|
222
|
-
</li>
|
|
223
|
-
<li class="item symbol">
|
|
224
|
-
<div class="task-group-term">
|
|
225
|
-
<code>
|
|
226
|
-
<a name="/s:vC9Alamofire7Manager24startRequestsImmediatelySb">
|
|
227
|
-
<a class="x-instance-method Swift" href="#/s:vC9Alamofire7Manager24startRequestsImmediatelySb">startRequestsImmediately</a>
|
|
228
|
-
</code>
|
|
229
|
-
</div>
|
|
230
|
-
<div class="height-container">
|
|
231
|
-
<div class="pointy-thing-container"></div>
|
|
232
|
-
<section class="section instance-method">
|
|
233
|
-
<div class="pointy-thing"></div>
|
|
234
|
-
<div class="abstract">
|
|
235
|
-
<p class="para">Whether to start requests immediately after being constructed. <code>true</code> by default.</p>
|
|
236
|
-
</div>
|
|
237
|
-
<div class="declaration">
|
|
238
|
-
<h4>Declaration</h4>
|
|
239
|
-
|
|
240
|
-
<div class="Swift">
|
|
241
|
-
<p class="aside-title">Swift</p>
|
|
242
|
-
<p class="para">
|
|
243
|
-
<code>public var startRequestsImmediately: Bool</code>
|
|
244
|
-
</p>
|
|
245
|
-
</div>
|
|
246
|
-
</div>
|
|
247
|
-
<div class="result-description view-on-github">
|
|
248
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L282">Show on GitHub</a>
|
|
249
|
-
</div>
|
|
250
|
-
</section>
|
|
251
|
-
</div>
|
|
252
|
-
</li>
|
|
253
173
|
<li class="item symbol">
|
|
254
174
|
<div class="task-group-term">
|
|
255
175
|
<code>
|
|
@@ -310,96 +230,6 @@
|
|
|
310
230
|
</section>
|
|
311
231
|
</div>
|
|
312
232
|
</li>
|
|
313
|
-
<li class="item symbol">
|
|
314
|
-
<div class="task-group-term">
|
|
315
|
-
<code>
|
|
316
|
-
<a name="/s:VFC9Alamofire7Managerg14sharedInstanceS0_L_9Singleton">
|
|
317
|
-
<a class="x-instance-method Swift" href="#/s:VFC9Alamofire7Managerg14sharedInstanceS0_L_9Singleton">Singleton</a>
|
|
318
|
-
</code>
|
|
319
|
-
</div>
|
|
320
|
-
<div class="height-container">
|
|
321
|
-
<div class="pointy-thing-container"></div>
|
|
322
|
-
<section class="section instance-method">
|
|
323
|
-
<div class="pointy-thing"></div>
|
|
324
|
-
<div class="abstract">
|
|
325
|
-
<p class="para">Undocumented</p>
|
|
326
|
-
</div>
|
|
327
|
-
<div class="result-description view-on-github">
|
|
328
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L0">Show on GitHub</a>
|
|
329
|
-
</div>
|
|
330
|
-
</section>
|
|
331
|
-
</div>
|
|
332
|
-
</li>
|
|
333
|
-
<li class="item symbol">
|
|
334
|
-
<div class="task-group-term">
|
|
335
|
-
<code>
|
|
336
|
-
<a name="/s:vC9Alamofire7ManagerP33_A313450CFC1FC3D0CBEF4411412DB9E88delegateCS0_15SessionDelegate">
|
|
337
|
-
<a class="x-instance-method Swift" href="#/s:vC9Alamofire7ManagerP33_A313450CFC1FC3D0CBEF4411412DB9E88delegateCS0_15SessionDelegate">delegate</a>
|
|
338
|
-
</code>
|
|
339
|
-
</div>
|
|
340
|
-
<div class="height-container">
|
|
341
|
-
<div class="pointy-thing-container"></div>
|
|
342
|
-
<section class="section instance-method">
|
|
343
|
-
<div class="pointy-thing"></div>
|
|
344
|
-
<div class="abstract">
|
|
345
|
-
<p class="para">Undocumented</p>
|
|
346
|
-
</div>
|
|
347
|
-
<div class="result-description view-on-github">
|
|
348
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L0">Show on GitHub</a>
|
|
349
|
-
</div>
|
|
350
|
-
</section>
|
|
351
|
-
</div>
|
|
352
|
-
</li>
|
|
353
|
-
<li class="item symbol">
|
|
354
|
-
<div class="task-group-term">
|
|
355
|
-
<code>
|
|
356
|
-
<a name="/s:vC9Alamofire7ManagerP33_A313450CFC1FC3D0CBEF4411412DB9E85queueGSQCSo8NSObject_">
|
|
357
|
-
<a class="x-instance-method Swift" href="#/s:vC9Alamofire7ManagerP33_A313450CFC1FC3D0CBEF4411412DB9E85queueGSQCSo8NSObject_">queue</a>
|
|
358
|
-
</code>
|
|
359
|
-
</div>
|
|
360
|
-
<div class="height-container">
|
|
361
|
-
<div class="pointy-thing-container"></div>
|
|
362
|
-
<section class="section instance-method">
|
|
363
|
-
<div class="pointy-thing"></div>
|
|
364
|
-
<div class="abstract">
|
|
365
|
-
<p class="para">Undocumented</p>
|
|
366
|
-
</div>
|
|
367
|
-
<div class="result-description view-on-github">
|
|
368
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L0">Show on GitHub</a>
|
|
369
|
-
</div>
|
|
370
|
-
</section>
|
|
371
|
-
</div>
|
|
372
|
-
</li>
|
|
373
|
-
<li class="item symbol">
|
|
374
|
-
<div class="task-group-term">
|
|
375
|
-
<code>
|
|
376
|
-
<a name="/s:vC9Alamofire7Manager7sessionCSo12NSURLSession">
|
|
377
|
-
<a class="x-instance-method Swift" href="#/s:vC9Alamofire7Manager7sessionCSo12NSURLSession">session</a>
|
|
378
|
-
</code>
|
|
379
|
-
</div>
|
|
380
|
-
<div class="height-container">
|
|
381
|
-
<div class="pointy-thing-container"></div>
|
|
382
|
-
<section class="section instance-method">
|
|
383
|
-
<div class="pointy-thing"></div>
|
|
384
|
-
<div class="abstract">
|
|
385
|
-
<p class="para">The underlying session.</p>
|
|
386
|
-
</div>
|
|
387
|
-
<div class="declaration">
|
|
388
|
-
<h4>Declaration</h4>
|
|
389
|
-
|
|
390
|
-
<div class="Swift">
|
|
391
|
-
<p class="aside-title">Swift</p>
|
|
392
|
-
<p class="para">
|
|
393
|
-
<code>public let session: NSURLSession</code>
|
|
394
|
-
</p>
|
|
395
|
-
</div>
|
|
396
|
-
</div>
|
|
397
|
-
<div class="result-description view-on-github">
|
|
398
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L279">Show on GitHub</a>
|
|
399
|
-
</div>
|
|
400
|
-
</section>
|
|
401
|
-
</div>
|
|
402
|
-
</li>
|
|
403
233
|
<li class="item symbol">
|
|
404
234
|
<div class="task-group-term">
|
|
405
235
|
<code>
|
|
@@ -479,26 +309,6 @@
|
|
|
479
309
|
</section>
|
|
480
310
|
</div>
|
|
481
311
|
</li>
|
|
482
|
-
<li class="item symbol">
|
|
483
|
-
<div class="task-group-term">
|
|
484
|
-
<code>
|
|
485
|
-
<a name="/s:FC9Alamofire7Managerd">
|
|
486
|
-
<a class="x-instance-method Swift" href="#/s:FC9Alamofire7Managerd">deinit</a>
|
|
487
|
-
</code>
|
|
488
|
-
</div>
|
|
489
|
-
<div class="height-container">
|
|
490
|
-
<div class="pointy-thing-container"></div>
|
|
491
|
-
<section class="section instance-method">
|
|
492
|
-
<div class="pointy-thing"></div>
|
|
493
|
-
<div class="abstract">
|
|
494
|
-
<p class="para">Undocumented</p>
|
|
495
|
-
</div>
|
|
496
|
-
<div class="result-description view-on-github">
|
|
497
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L0">Show on GitHub</a>
|
|
498
|
-
</div>
|
|
499
|
-
</section>
|
|
500
|
-
</div>
|
|
501
|
-
</li>
|
|
502
312
|
<li class="item symbol">
|
|
503
313
|
<div class="task-group-term">
|
|
504
314
|
<code>
|
|
@@ -641,26 +451,6 @@
|
|
|
641
451
|
</section>
|
|
642
452
|
</div>
|
|
643
453
|
</li>
|
|
644
|
-
<li class="item symbol">
|
|
645
|
-
<div class="task-group-term">
|
|
646
|
-
<code>
|
|
647
|
-
<a name="/s:CC9Alamofire7Manager15SessionDelegate">
|
|
648
|
-
<a class="x-instance-method Swift" href="#/s:CC9Alamofire7Manager15SessionDelegate">SessionDelegate</a>
|
|
649
|
-
</code>
|
|
650
|
-
</div>
|
|
651
|
-
<div class="height-container">
|
|
652
|
-
<div class="pointy-thing-container"></div>
|
|
653
|
-
<section class="section instance-method">
|
|
654
|
-
<div class="pointy-thing"></div>
|
|
655
|
-
<div class="abstract">
|
|
656
|
-
<p class="para">Undocumented</p>
|
|
657
|
-
</div>
|
|
658
|
-
<div class="result-description view-on-github">
|
|
659
|
-
<a href="https://github.com/Alamofire/Alamofire/blob/1.1.0/Source/Alamofire.swift#L0">Show on GitHub</a>
|
|
660
|
-
</div>
|
|
661
|
-
</section>
|
|
662
|
-
</div>
|
|
663
|
-
</li>
|
|
664
454
|
</ul>
|
|
665
455
|
</div>
|
|
666
456
|
</section>
|