mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
fix russian readme
This commit is contained in:
parent
7608d297d5
commit
bd4aa26ff8
1 changed files with 42 additions and 5 deletions
47
README.ru.md
47
README.ru.md
|
@ -18,13 +18,13 @@ end
|
|||
|
||||
Установите gem:
|
||||
|
||||
```
|
||||
``` shell
|
||||
gem install sinatra
|
||||
```
|
||||
|
||||
и запустите приложение с помощью:
|
||||
|
||||
```
|
||||
``` shell
|
||||
ruby myapp.rb
|
||||
```
|
||||
|
||||
|
@ -885,9 +885,9 @@ erb :overview, :locals => { :text => mediawiki(:introduction) }
|
|||
<td>
|
||||
<a href="https://github.com/josh/ruby-coffee-script" title="Ruby CoffeeScript">
|
||||
CoffeeScript
|
||||
</a> и способ
|
||||
</a> и
|
||||
<a href="https://github.com/sstephenson/execjs/blob/master/README.md#readme" title="ExecJS">
|
||||
запускать JavaScript
|
||||
способ запускать JavaScript
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -901,6 +901,43 @@ erb :overview, :locals => { :text => mediawiki(:introduction) }
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
#### Stylus шаблоны
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Зависимости</td>
|
||||
<td>
|
||||
<a href="https://github.com/lucasmazza/ruby-stylus" title="Ruby Stylus">
|
||||
Stylus
|
||||
</a> и
|
||||
<a href="https://github.com/sstephenson/execjs/blob/master/README.md#readme" title="ExecJS">
|
||||
способ запускать JavaScript
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Расширение файла</td>
|
||||
<td><tt>.styl</tt></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Пример</td>
|
||||
<td><tt>stylus :index</tt></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Перед тем, как использовать шаблоны стилус, загрузите `stylus` и
|
||||
`stylus/tilt`:
|
||||
|
||||
``` ruby
|
||||
require 'sinatra'
|
||||
require 'stylus'
|
||||
require 'stylus/tilt'
|
||||
|
||||
get '/' do
|
||||
stylus :example
|
||||
end
|
||||
```
|
||||
|
||||
#### Yajl шаблоны
|
||||
|
||||
<table>
|
||||
|
@ -2156,7 +2193,7 @@ not_found do
|
|||
end
|
||||
```
|
||||
|
||||
### Ошибки
|
||||
### Error
|
||||
|
||||
Обработчик ошибок `error` будет вызван, когда исключение выброшено из блока
|
||||
маршрута, либо из фильтра. Объект-исключение доступен как переменная
|
||||
|
|
Loading…
Reference in a new issue