Skip to content

Instantly share code, notes, and snippets.

@vraravam
Last active January 13, 2016 05:37
Show Gist options
  • Save vraravam/6ec734ebff2eef5770dc to your computer and use it in GitHub Desktop.
Save vraravam/6ec734ebff2eef5770dc to your computer and use it in GitHub Desktop.
Rails Generator configuration
class Application < Rails::Application
config.generators do |g|
g.orm :active_record
g.template_engine :erb
g.stylesheets false
g.javascripts false
g.test_framework :rspec,
fixtures: true,
view_specs: false,
helper_specs: false,
routing_specs: false,
controller_specs: false,
request_specs: false
g.fixture_replacement :factory_girl, dir: 'spec/factories'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment