aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/rack/debugger.rb
blob: 902361ce77d11173099cf62fd9f68e4b4cd94f33 (plain) (tree)
1
2
3
4
5
6
7
8
9





                         
                                                                                 
 
                          
 


                                                                                  
                      
                                                                                                








                      
module Rails
  module Rack
    class Debugger
      def initialize(app)
        @app = app

        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, and try again."
        exit
      end

      def call(env)
        @app.call(env)
      end
    end
  end
end