diff options
author | Connor Shea <connor.james.shea@gmail.com> | 2016-06-30 16:18:05 -0600 |
---|---|---|
committer | Connor Shea <connor.james.shea@gmail.com> | 2016-06-30 16:18:05 -0600 |
commit | eb70f051a6fb69542aa4436d808bf32271219da8 (patch) | |
tree | fcc354c27d01fde266e1a882783c4373cd272aa1 /config/environments/development.rb | |
parent | 44230e12bb2a7ea3d91a6a9a2bfd1543198f1b9b (diff) | |
download | gitlab-ce-eb70f051a6fb69542aa4436d808bf32271219da8.tar.gz |
Remove quiet_assets in favor of built-in sprockets-rails config.upgrade-sprockets-rails
quiet_assets has been seemingly abandoned, and now sprockets-rails has the feature built-in!
From this PR: https://github.com/rails/sprockets-rails/pull/355
Diffstat (limited to 'config/environments/development.rb')
-rw-r--r-- | config/environments/development.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index 8cca0039b4a..45a8c1add3e 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -42,4 +42,7 @@ Rails.application.configure do config.action_mailer.preview_path = 'spec/mailers/previews' config.eager_load = false + + # Do not log asset requests + config.assets.quiet = true end |