Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated gem quiet_assets #22

Merged
merged 3 commits into from
Sep 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ gem 'prototype_legacy_helper', '0.0.0', :git => 'https://github.com/rails/protot

# Solo para el entorno de desarrollo
group :development do
# Para ocultar los logs de los assets en consola
gem 'quiet_assets'
# Para buscar traducciones
gem 'gettext'#, '>=1.9.3', :require => false
# Para debug
Expand Down
9 changes: 3 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,8 @@ GEM
prawn (>= 1.3.0, < 3.0.0)
puma (4.3.6)
nio4r (~> 2.0)
quiet_assets (1.1.0)
railties (>= 3.1, < 5.0)
raabro (1.3.1)
rack (1.6.13)
raabro (1.1.6)
rack (1.6.12)
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.11.3)
Expand Down Expand Up @@ -243,8 +241,7 @@ DEPENDENCIES
prototype-rails!
prototype_legacy_helper (= 0.0.0)!
puma
quiet_assets
rails (= 4.2.11.3)
rails (~> 4.2)
rufus-scheduler
sass-rails
seed_dump
Expand Down
5 changes: 4 additions & 1 deletion config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
config.eager_load = false
config.eager_load = false

# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
Expand All @@ -30,6 +30,9 @@
# Expands the lines which load the assets
config.assets.debug = true

# Suppress logger output for asset requests.
config.assets.quiet = true

# Debug rjs files
#config.action_view.debug_rjs = true

Expand Down