Rails + AngularjsでSPA作ってると、htmlテンプレートはhamlで書きたくなるよね??
やり方を備忘録的に記録
Gemfileにhaml-rails入れておく
gem 'haml-rails'
assets.rbに設定を記載
config/assets.rb
Rails.application.assets.register_engine '.haml', Tilt::HamlTemplate
assetsのtemplatesフォルダ内にhtml.hamlを作成
app/assets/templates/hoge.html.haml
%div
やっほー
あとは、これで取得できるよー。
http://localhost:3000/assets/hoge.html