こちらの記事(https://qiita.com/nishina555/items/8ed180333fbc8f78e91e)を参考に
railsでslimを使おうとしたらこのようなエラーが出ました。
Gemfile
1gem "slim-rails" 2gem "html2slim"
でbundle install
を実行。
bundle exec erb2slim app/views app/views
を実行してslimファイルに変換し、
bundle exec erb2slim app/views app/views -d
でslimファイルのみにしました。
root
1root to: "users#index"
controller
1def index 2end
問題はViewです。
app/controller/users/index.html.erb
は今まで通りしっかり出力されるのですが、
app/controller/users/index.html.slim
のみ出力されません。
何が原因なのでしょうか?
環境
rails Rails 5.2.1
sqlite3
html2slim 0.2.0
slim-rails (3.1.3)

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。