LoginSignup
0
0

More than 5 years have passed since last update.

rails newでmysql、haml、rpsecを使う

Last updated at Posted at 2014-01-19
  • DBでmysqlを使う、test::unitを組み込まない
rails new [app_name] -d mysql --skip-test-unit
  • rspecとhamlを使う
Gemfile
group :development, :test do
  gem 'rspec-rails', '~> 3.0.0.beta'
end

gem 'haml-rails'
bundle install
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