Sha256: 2931abc06e201e440b52605c796c3c4b673d348df13f9c4e6a976b71d8e61682
Contents?: true
Size: 814 Bytes
Versions: 13
Compression:
Stored size: 814 Bytes
Contents
# frozen_string_literal: true # # Main Container for all of Byebug's code # module Byebug # # Starts byebug, and stops at the first line of user's code. # def self.attach require "byebug/core" unless started? self.mode = :attached start run_init_script end current_context.step_out(3, true) end def self.spawn(host = "localhost", port = nil) require "byebug/core" self.wait_connection = true start_server(host, port || PORT) end end # # Adds a `byebug` method to the Kernel module. # # Dropping a `byebug` call anywhere in your code, you get a debug prompt. # module Kernel def byebug Byebug.attach end def remote_byebug(host = "localhost", port = nil) Byebug.spawn(host, port) Byebug.attach end alias debugger byebug end
Version data entries
13 entries across 13 versions & 5 rubygems