LoginSignup
0
0

More than 3 years have passed since last update.

Railsでのhaml実装

Posted at

書いてあること

1.haml-railsを用いた実装

  • gem導入
  • hamlに変換

2.参考ページ
3.終わりに

1.haml-railsを用いた実装

・gem導入

Gemfile
gem "haml-rails", ">= 1.0", '<= 2.0.1'
# 最下部に記載
ターミナル
$ bundle

導入完了

・hamlに変換

ターミナル
$ rails haml:erb2haml
途中でターミナルに出てきたら
Would you like to delete the original .erb files? (This is not recommended unless you are under version control.) (y/n)
#yを入力してエンター

hamlへ変換完了

2.参考ページ

3.終わりに

hamlはhtmlよりもコードの記述が少し減るので、かきやすいですがAWSにアップロードする際は脆弱性の問題もあるので対策をしないと怖いですね(私まだしてないけど。)
対策についてもまとめたらUPします。
記述等に誤りがございましたらご指摘いただければ幸いです。

0
0
0

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
0
0