Sha256: 557fb840fe1b064589ec7ba6bb32985c11ea92791be6e6b84cc4fd7f0230d995

Contents?: true

Size: 501 Bytes

Versions: 215

Compression:

Stored size: 501 Bytes

Contents

module Kernel
  unless respond_to?(:debugger)
    # Starts a debugging session if ruby-debug has been loaded (call rails server --debugger to do load it).
    def debugger
      message = "\n***** Debugger requested, but was not available (ensure ruby-debug 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

Version data entries

215 entries across 171 versions & 24 rubygems

Version Path
challah-0.5.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.4.1 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.4.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.3.5 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.3.4 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.3.3 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.3.2 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.3.1 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.3.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.2.1 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
challah-0.2.0 vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb
activesupport-3.2.1 lib/active_support/core_ext/kernel/debugger.rb
activesupport-3.2.0 lib/active_support/core_ext/kernel/debugger.rb
activesupport-3.2.0.rc2 lib/active_support/core_ext/kernel/debugger.rb
activesupport-3.2.0.rc1 lib/active_support/core_ext/kernel/debugger.rb