0
1

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 3 years have passed since last update.

RailsでHamlを使う方法⭐︎

Posted at

RailsでHamlを使えるようにする方法

復習がてらにhamlを使ってコーディングしていたのでこの際アウトプットしておきます。

手順↓

  • hamlのgemをインストールする
  • 拡張子をerbからhamlにする

以上。超簡単

Hamlのgemをインストールする

Gemfile
gem 'haml-rails'

Gemfileに以上の記載をして
ターミナルで必ず bundle installを実行しましょう。

$ bundle install

この時点でhamlは使えるようになりますが拡張子も一気にerbからhamlに変更しておくと便利なので実行します。

拡張子の変更をターミナルで実行する

$ rails haml:erb2haml

実行するとターミナル上で何か聞かれますがyコマンドを押しておくとオッケーです。

以上。簡単

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?