Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 28, 2019 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryKuz/90214af9c3660aec134924f79aa5f995 to your computer and use it in GitHub Desktop.
Save MaryKuz/90214af9c3660aec134924f79aa5f995 to your computer and use it in GitHub Desktop.
Set up Ruby on Rails generators
Rails.application.configure do
config.generators do |g|
g.orm :active_record, migration: true
g.test_framework :rspec, fixtures: false
g.helper false
g.decorator false
g.controller assets: false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment