Rspecについてはこちらにまとめようと思います。 (ちょいちょい追記予定) describe test対象 describe 'Foo' do end context testの条件 describe 'Foo' do context 'Bar' do end end it test内容 exam…
まずはTOPページ用のControllerとメソッドを追加しました。 rails g controller root index あとは、routes.rbにroot toを追加。 get 'root/index' root to: 'root#index' これで、http://localhost…
Rubyのインストールをして、Railsのインストールも出来たので、次はRailsを起動してみたいと思います。 とりあえず動く環境を作りたいので、DBはMySQLではなく一旦SQLiteで。 アプリの作成 testって名前のアプリを作ってみましたw rails new test 必要なモジュールは以…