Created
March 17, 2009 19:28
-
-
Save komagata/80729 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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