Started again with Rails 4
[feedcatcher.git] / vendor / rails / railties / lib / rails / rack / debugger.rb
diff --git a/vendor/rails/railties/lib/rails/rack/debugger.rb b/vendor/rails/railties/lib/rails/rack/debugger.rb
deleted file mode 100644 (file)
index aa2711c..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-module Rails
-  module Rack
-    class Debugger
-      def initialize(app)
-        @app = app
-
-        require_library_or_gem 'ruby-debug'
-        ::Debugger.start
-        ::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings)
-        puts "=> Debugger enabled"
-      rescue Exception
-        puts "You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'"
-        exit
-      end
-
-      def call(env)
-        @app.call(env)
-      end
-    end
-  end
-end