Created
December 19, 2011 22:20
-
-
Save andredublin/1499174 to your computer and use it in GitHub Desktop.
Heroku + Rails Generator
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
gem("thin") | |
gem("bcrypt-ruby", version:"~> 3.0.0") | |
gem("heroku") | |
gem("gravatar_image_tag") | |
gem("kaminari") | |
gem("bourbon", group: 'assets') | |
gem("annotate", group: 'development', :git => 'git://github.com/ctran/annotate_models.git') | |
gem("ffaker", group: 'development') | |
if yes?("Would like to install Zurb Foundation?") | |
gem("zurb-foundation", group: 'assets') | |
generate("foundation:install") | |
generate("foundation:layout") | |
end | |
gem("cucumber-rails", group: 'test') | |
gem("capybara", group: 'test') | |
gem("database_cleaner", group: 'test') | |
gem("factory_girl_rails", group: 'test') | |
if yes?("Would like to install Rspec?") | |
gem("rspec-rails", group: 'test') | |
generate("rspec:install") | |
end | |
gem("ZenTest", group: 'test') | |
gem("autotest-inotify", group: 'test') | |
gem("spork", version: '~> 0.9.0.rc', group: 'test') | |
git :init | |
git :add => "." | |
git :commit => "-m First commit!" | |
rake("bundle exec db:create:all") | |
application(nil, env: "production") do | |
"config.assets.compile = true" | |
"config.serve_static_assets = true" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment