Skip to content

Instantly share code, notes, and snippets.

@yorzi
Created August 25, 2011 07:42
Show Gist options
  • Save yorzi/1170181 to your computer and use it in GitHub Desktop.
Save yorzi/1170181 to your computer and use it in GitHub Desktop.
config a rails3.1 application with pre-defined technologies.
config.generators do |g|
g.test_framework :rspec, :fixture => true, :view_specs => false, :routing_specs => false, :helper_specs => false, :integration_specs => false
g.integration_tool :cucumber
g.stylesheets false
g.fixture_replacement :factory_girl, :dir => 'spec/factories'
g.form_builder :simple_form
g.template_engine :haml
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment