Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created April 6, 2009 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ukstudio/90697 to your computer and use it in GitHub Desktop.
Save ukstudio/90697 to your computer and use it in GitHub Desktop.
# Copy database.yml
run 'cp config/database.yml config/database.yml.example'
# Delete unnecessary files
run 'rm README'
run 'rm public/index.html'
# Install plugins
plugin 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication.git'
plugin 'will_paginate', :git => 'git://github.com/mislav/will_paginate.git'
# Install gems
gem 'amatsuda-i18n_generators', :source => 'http://gems.github.com', :lib => false
gem 'rspec-rails', :lib => false
gem 'rspec', :lib => false
gem 'thoughtbot-factory_girl', :lib => "factory_girl", :source => "http://gems.github.com"
gem 'bmabey-email_spec', :lib => 'email_spec', :source => 'http://gems.github.com'
rake('gems:install', :sudo => true) if yes?("必要なgemをインストールしますか?")
# generate
generate :rspec
generate :cucumber
generate :email_spec
generate :i18n, 'ja'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment