Skip to content

Instantly share code, notes, and snippets.

@andredublin
Created December 19, 2011 22:20
Show Gist options
  • Save andredublin/1499174 to your computer and use it in GitHub Desktop.
Save andredublin/1499174 to your computer and use it in GitHub Desktop.
Heroku + Rails Generator
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