Skip to content

Instantly share code, notes, and snippets.

@komagata
Created March 17, 2009 19:28
Show Gist options
  • Save komagata/80729 to your computer and use it in GitHub Desktop.
Save komagata/80729 to your computer and use it in GitHub Desktop.
# Copy database.yml
run "cp config/database.yml config/database.example.yml"
# Delete unnecessary files
run "rm README"
run "rm public/index.html"
# Install plugins
plugin 'rspec', :git => 'git://github.com/dchelimsky/rspec.git', :submodule => true
plugin 'rspec-rails', :git => 'git://github.com/dchelimsky/rspec-rails.git', :submodule => true
plugin 'i18n_generators', :git => 'git://github.com/amatsuda/i18n_generators.git', :submodule => true
plugin 'active_record_base_without_table', :git => 'git://github.com/staugaard/active_record_base_without_table.git', :submodule => true
plugin 'exception_notification', :git => 'git://github.com/rails/exception_notification.git', :submodule => true
plugin 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication.git', :submodule => true
plugin 'will_paginate', :git => 'git://github.com/mislav/will_paginate.git', :submodule => true
plugin 'paperclip', :git => 'git://github.com/thoughtbot/paperclip.git', :submodule => true
plugin 'ssl_requirement_paranoid', :git => 'git://github.com/komagata/ssl_requirement_paranoid.git', :submodule => true
# Execute generator
generate :rspec
generate :i18n, "ja"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment