mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Include Rack in the server noise
This commit is contained in:
parent
50f428661a
commit
1e8f9634f6
1 changed files with 2 additions and 2 deletions
|
@ -3,11 +3,11 @@ module Rails
|
|||
ERB_METHOD_SIG = /:in `_run_erb_.*/
|
||||
|
||||
VENDOR_DIRS = %w( vendor/plugins vendor/gems vendor/rails )
|
||||
MONGREL_DIRS = %w( lib/mongrel bin/mongrel )
|
||||
SERVER_DIRS = %w( lib/mongrel bin/mongrel lib/rack )
|
||||
RAILS_NOISE = %w( script/server )
|
||||
RUBY_NOISE = %w( rubygems/custom_require benchmark.rb )
|
||||
|
||||
ALL_NOISE = VENDOR_DIRS + MONGREL_DIRS + RAILS_NOISE + RUBY_NOISE
|
||||
ALL_NOISE = VENDOR_DIRS + SERVER_DIRS + RAILS_NOISE + RUBY_NOISE
|
||||
|
||||
def initialize
|
||||
super
|
||||
|
|
Loading…
Reference in a new issue