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の文字を表示させる事ができます。