Railsへの入口 • rvmで適当にgemsetを作り、railsをインス トール • rails new appname -T -m <template gist> --skip-bundle • bundle install --path vendor/bundle 2012年5月16日水曜日 テストの準備 • bundle exec rails g rspec:install • bundle exec guard init rspec (guard- rspec) • bundle exec guard init spork (guard- spork) • guard 'rspec', :version => 2, :cli => "-- format d --color --drb", :all_on_start => false, :all_after_pass => fa
