Skip to content

Commit

Permalink
Enabling of Gzip compression commented out in config.ru
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroeningen committed Aug 11, 2012
1 parent e1e5f06 commit 79f8fed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions guides/code/getting_started/config.ru
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


require ::File.expand_path('../config/environment', __FILE__) require ::File.expand_path('../config/environment', __FILE__)


#enable Gzip compression # enable Gzip compression on your webserver
use Rack::Deflater # use Rack::Deflater


run Blog::Application run Blog::Application
4 changes: 2 additions & 2 deletions railties/lib/rails/generators/rails/app/templates/config.ru
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


require ::File.expand_path('../config/environment', __FILE__) require ::File.expand_path('../config/environment', __FILE__)


#enable Gzip compression # enable Gzip compression on your webserver
use Rack::Deflater # use Rack::Deflater


run <%= app_const %> run <%= app_const %>

0 comments on commit 79f8fed

Please sign in to comment.