80
71

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Rails4,Rails5] erbファイルをSlimに一括変換するGemとRubyワンライナー

Last updated at Posted at 2014-06-15

HTMLやerbをslimに変換する「html2slim」

slim-templateで公開されている html2slim は、htmlやerbを、slimに変換してくれます。

gem install html2slim

Gemをインストールすると、html2slimとerb2slimのコマンドが使えるようになります。

app/views/ 以下の.erbを、slimに一括変換するRubyのワンライナー

for i in app/views/**/*.erb; do erb2slim $i ${i%erb}slim && rm $i; done

ファイルの書き換えではなく、同名の.slimファイルを新規に作成し、古い.erbファイルを削除。erb2slimの-d optionは使われていません。

80
71
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
80
71

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?