Created
June 18, 2015 13:47
-
-
Save benjaminmateev/461b5d4741f218b72d6b to your computer and use it in GitHub Desktop.
Default Application.rb
This file contains hidden or 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/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