aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/kernel/debugger.rb
blob: 2273cf7c2c1cf1f1d8cae7c338fa226a927cca8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Kernel
  unless respond_to?(:debugger)
    # Starts a debugging session if a debugger has been loaded (call rails server --debugger to do load it).
    def debugger
      message = "\n***** Debugger requested, but was not available (ensure debugger is listed in Gemfile/installed as gem): Start server with --debugger to enable *****\n"
      defined?(Rails) ? Rails.logger.info(message) : $stderr.puts(message)
    end
    alias breakpoint debugger unless respond_to?(:breakpoint)
  end
end