Skip to content

Instantly share code, notes, and snippets.

@benjaminmateev
Created June 18, 2015 13:47
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 benjaminmateev/461b5d4741f218b72d6b to your computer and use it in GitHub Desktop.
Save benjaminmateev/461b5d4741f218b72d6b to your computer and use it in GitHub Desktop.
Default Application.rb
# config/application.rb
# Don't generate assets and helpers
config.generators do |g|
g.assets = false
g.helper = false
end
# Don't include all helpers globally, just the right helper for the current namespace
config.action_controller.include_all_helpers = false
# Create a structure.sql not a schema.rb
config.active_record.schema_format = :sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment