Skip to content

Instantly share code, notes, and snippets.

@kano4
Created September 30, 2012 09:08
Show Gist options
  • Save kano4/3806298 to your computer and use it in GitHub Desktop.
Save kano4/3806298 to your computer and use it in GitHub Desktop.
rails new $APP_NAME --skip-bundle -T -d postgresql
cd $APP_NAME
git init
# Gemfile
gem 'haml-rails'
group :development, :test do
gem 'thin'
gem 'rspec-rails'
end
# .gitignore
/vendor/bundle
# config/database.yml
username
bundle install --path vendor/bundle
bundle exec rails g rspec:install
bundle exec guard init spork
bundle exec guard init rspec
bundle exec spork --bootstrap
bundle exec guard start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment