LoginSignup
0
0

More than 3 years have passed since last update.

HAMLの書き始め ーHamlでlocalhost:3000に表示ー

Posted at

1

rites.rb
  root to: 'entrance#index'

2

Gemfile
gem 'pry-rails'
gem 'mini_racer'
gem 'haml-rails'

3

・忘れずに、bundle install
rails haml:erb2hamlで.erbファイルをHamlに変換、yかnを聞かれるので、yで.erbファイルを削除。
rails db:createでデータベースを作成しておく。
これをやらないとActiveRecord::NoDatabaseError (Unknown database 'oil_development'):
と、データベースがありませんというエラーが出てしまいます。

4

application.scss
@import "entrance.scss";

5

entrance>index.html.haml
.oil
  eats

これで、localhost:3000に行くとhamlでeatsの文字を表示させる事ができます。

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