aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-26 11:24:56 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-26 11:24:56 -0500
commitdbb32115ef45dd58667e450125deba80d7016341 (patch)
tree83089bedcf1028e301a961910560b6c99185cb7c /railties/lib/rails/commands
parent79a4d505fa8bd83189296be60cf62601e6783597 (diff)
downloadrails-dbb32115ef45dd58667e450125deba80d7016341.tar.gz
rails-dbb32115ef45dd58667e450125deba80d7016341.tar.bz2
rails-dbb32115ef45dd58667e450125deba80d7016341.zip
Enable static asset server by default
Diffstat (limited to 'railties/lib/rails/commands')
-rw-r--r--railties/lib/rails/commands/server.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server.rb b/railties/lib/rails/commands/server.rb
index a600e1e9db..c138cbc9bf 100644
--- a/railties/lib/rails/commands/server.rb
+++ b/railties/lib/rails/commands/server.rb
@@ -57,7 +57,6 @@ RAILS_ENV.replace(options[:environment]) if defined?(RAILS_ENV)
app = Rack::Builder.new {
use Rails::Rack::LogTailer unless options[:detach]
use Rails::Rack::Debugger if options[:debugger]
- use Rails::Rack::Static
run ActionDispatch::Utils.parse_config(options[:config])
}.to_app