次のソース: http://help-me-hackers-production/

railsのproductionでhamlのインデントが効いてない?

File: HAML_CHANGELOG

2.2.0

New Options

:ugly

The :ugly option is not technically new; it was introduced in Haml 2.0 to make rendering deeply nested templates less painful. However, it’s been greatly empowered in Haml 2.2. It now does all sorts of performance optimizations that couldn’t be done before, and its use increases Haml’s performance dramatically. It’s enabled by default in production in Rails, and it’s highly recommended for production environments in other frameworks.

新しいSyntaxが加わった2.2.0から深いネストが遅くなったのでproductionではデフォルトで:uglyオプション有効でインデント無しだそうです。

・・・・・・・・・。

こんな多数派の迫害にもう我慢ならないっ!

少数派の諸君!今すぐ下記のように:uglyオプションをぶち壊して政府転覆の恐ろしい計画を練ろうじゃないか!

# config/initializers/haml.rb
Haml::Template::options[:ugly] = false

Comments


Option