-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMime.html
245 lines (126 loc) · 5.83 KB
/
Mime.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
---
title: Mime
layout: default
---
<div class="main">
<div class="banner">
<span>Ruby on Rails 8.0.0</span><br />
<div class="type">Module</div>
<h1>
Mime
</h1>
<ul class="files">
<li><a href="../files/actionpack/lib/action_dispatch/http/mime_type_rb.html">actionpack/lib/action_dispatch/http/mime_type.rb</a></li>
<li><a href="../files/actionpack/lib/action_dispatch/http/mime_types_rb.html">actionpack/lib/action_dispatch/http/mime_types.rb</a></li>
<li><a href="../files/actionpack/lib/action_dispatch/testing/request_encoder_rb.html">actionpack/lib/action_dispatch/testing/request_encoder.rb</a></li>
<li><a href="../files/railties/lib/rails/mailers_controller_rb.html">railties/lib/rails/mailers_controller.rb</a></li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<h2 id="namespace">Namespace</h2>
<h3 id="class">Class</h3>
<ul>
<li><a href="Mime/AllType.html">Mime::AllType</a></li>
<li><a href="Mime/Mimes.html">Mime::Mimes</a></li>
<li><a href="Mime/NullType.html">Mime::NullType</a></li>
<li><a href="Mime/Type.html">Mime::Type</a></li>
</ul>
<h2 id="methods">Methods</h2>
<ul>
<li>
<a href="#method-c-5B-5D">[]</a>
</li>
<li>
<a href="#method-c-fetch">fetch</a>
</li>
<li>
<a href="#method-c-symbols">symbols</a>
</li>
</ul>
<!-- Section constants -->
<h2 id="constants">Constants</h2>
<table border='0' cellpadding='5'>
<tr valign='top'>
<td class="attr-name">ALL</td>
<td>=</td>
<td class="attr-value">AllType.instance</td>
</tr>
<tr valign='top'>
<td> </td>
<td colspan="2" class="attr-desc"><p><a href="Mime.html#ALL"><code>ALL</code></a> isn’t a real MIME type, so we don’t register it for lookup with the other concrete types. It’s a wildcard match that we use for <code>respond_to</code> negotiation internals.</p></td>
</tr>
<tr valign='top'>
<td class="attr-name">EXTENSION_LOOKUP</td>
<td>=</td>
<td class="attr-value">{}</td>
</tr>
<tr valign='top'>
<td class="attr-name">LOOKUP</td>
<td>=</td>
<td class="attr-value">{}</td>
</tr>
<tr valign='top'>
<td class="attr-name">SET</td>
<td>=</td>
<td class="attr-value">Mimes.new</td>
</tr>
</table>
<!-- Methods -->
<h2 id="class-public-methods">Class Public methods</h2>
<div class="method">
<h3 id="method-c-5B-5D">
[](type)
</h3>
<div class="description">
</div>
<details class="method__source">
<summary>
<span class="label">📝 Source code</span>
</summary>
<pre><code class="ruby"># File actionpack/lib/action_dispatch/http/mime_type.rb, line 51
def [](type)
return type if type.is_a?(Type)
Type.lookup_by_extension(type)
end</code></pre>
<a href="https://github.com/rails/rails/blob/dd8f7185faeca6ee968a6e9367f6d8601a83b8db/actionpack/lib/action_dispatch/http/mime_type.rb#L51" target="_blank" class="github_url">🔎 See on GitHub</a>
</details>
</div>
<div class="method">
<h3 id="method-c-fetch">
fetch(type, &block)
</h3>
<div class="description">
</div>
<details class="method__source">
<summary>
<span class="label">📝 Source code</span>
</summary>
<pre><code class="ruby"># File actionpack/lib/action_dispatch/http/mime_type.rb, line 64
def fetch(type, &block)
return type if type.is_a?(Type)
EXTENSION_LOOKUP.fetch(type.to_s, &block)
end</code></pre>
<a href="https://github.com/rails/rails/blob/dd8f7185faeca6ee968a6e9367f6d8601a83b8db/actionpack/lib/action_dispatch/http/mime_type.rb#L64" target="_blank" class="github_url">🔎 See on GitHub</a>
</details>
</div>
<div class="method">
<h3 id="method-c-symbols">
symbols()
</h3>
<div class="description">
</div>
<details class="method__source">
<summary>
<span class="label">📝 Source code</span>
</summary>
<pre><code class="ruby"># File actionpack/lib/action_dispatch/http/mime_type.rb, line 56
def symbols
SET.symbols
end</code></pre>
<a href="https://github.com/rails/rails/blob/dd8f7185faeca6ee968a6e9367f6d8601a83b8db/actionpack/lib/action_dispatch/http/mime_type.rb#L56" target="_blank" class="github_url">🔎 See on GitHub</a>
</details>
</div>
</div>
</div>
</div>