Created
August 25, 2011 07:42
-
-
Save yorzi/1170181 to your computer and use it in GitHub Desktop.
config a rails3.1 application with pre-defined technologies.
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
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