Rails で erb -> haml への変換ポイント(どのgemの機能で変換するか)
haml-rails で変換
Gemfile
gem 'haml-rails'
使える Rake task
$ ./bin/rake haml:erb2haml
実行すると元のerbファイルを削除するかどうか、プロンプトで聞いてくる。
-----------------------------------------------------------
Would you like to delete the original .erb files? (This is not recommended unless you are under version control.) (y/n)
置き換えちゃってOKな場合、yで。
蛇足
RubyMineでRake task実行したら、このプロンプト箇所でジーっと止まってた・・
回避方法がわからず、1度実行するだけのタスクなので、シェルから実行することに。
erb2haml で変換
Gemfile
gem "erb2haml", :group => :development
使える Rake task
変換したいだけ(erbとっておきたい)
$ ./bin/rake haml:convert_erbs
置き換え(erb削除してくれる)
$ ./bin/rake haml:replace_erbs
調べてみて気づいた・・
別々のgemで、同じタスクのネームスペース(?) haml が拡張されてるんだね。。
erb2haml はもういらないのかも。。。
この辺のグダグダ調べてた感をブログに。
Author And Source
この問題について(Rails で erb -> haml への変換ポイント(どのgemの機能で変換するか)), 我々は、より多くの情報をここで見つけました https://qiita.com/mm36/items/518da1358508fdadef44著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .