aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/rack
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 15:12:24 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 15:54:22 -0300
commit93559da4826546d07014f8cfa399b64b4a143127 (patch)
tree6982c16196765b6b5ef4be3cbc3a95d26decc269 /railties/lib/rails/rack
parentcf01d01bd908d09e4638c85d49b92cb5c41c65a7 (diff)
downloadrails-93559da4826546d07014f8cfa399b64b4a143127.tar.gz
rails-93559da4826546d07014f8cfa399b64b4a143127.tar.bz2
rails-93559da4826546d07014f8cfa399b64b4a143127.zip
Remove debugger support
bebugger doesn't work with Ruby 2.2 so we don't need to support it anymore
Diffstat (limited to 'railties/lib/rails/rack')
-rw-r--r--railties/lib/rails/rack/debugger.rb25
1 files changed, 2 insertions, 23 deletions
diff --git a/railties/lib/rails/rack/debugger.rb b/railties/lib/rails/rack/debugger.rb
index f7b77bcb3b..1fde3db070 100644
--- a/railties/lib/rails/rack/debugger.rb
+++ b/railties/lib/rails/rack/debugger.rb
@@ -1,24 +1,3 @@
-module Rails
- module Rack
- class Debugger
- def initialize(app)
- @app = app
+require 'active_support/deprecation'
- ARGV.clear # clear ARGV so that rails server options aren't passed to IRB
-
- require 'debugger'
-
- ::Debugger.start
- ::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings)
- puts "=> Debugger enabled"
- rescue LoadError
- puts "You're missing the 'debugger' gem. Add it to your Gemfile, bundle it and try again."
- exit(1)
- end
-
- def call(env)
- @app.call(env)
- end
- end
- end
-end
+ActiveSupport::Deprecation.warn("This file is deprecated and will be removed in Rails 5.1 with no replacement.")