Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify default setting of :static to reflect the Proc #1052

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Clarify default setting of :static to reflect the Proc
  • Loading branch information
mwpastore committed Dec 3, 2015
commit e584f34cda79babfe75fa9941712a9f7391d90dc
2 changes: 1 addition & 1 deletion README.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -2541,7 +2541,7 @@ werden:
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -2336,7 +2336,7 @@ de ambos estilos:
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -2523,7 +2523,7 @@ mineures en ce qui concerne les paramètres par défaut :
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -2319,7 +2319,7 @@ end
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -2492,7 +2492,7 @@ end
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2562,7 +2562,7 @@ different default settings:
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ end
logging true false
method_override true false
inline_templates true false
static true false
static true File.exist?(public_folder)

### Запуск модульных приложений

Expand Down
1 change: 1 addition & 0 deletions README.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -1792,6 +1792,7 @@ Sinatra::Base子类可用的方法实际上就是通过顶层 DSL 可用的方
logging true false
method_override true false
inline_templates true false
static true File.exist?(public_folder)

### 运行一个模块化应用

Expand Down