Created
April 25, 2018 07:19
-
-
Save remore/eb51368f5470b366571b51a16e823f07 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# worked with ruby 2.3.3 && byebug 10.0.2 | |
# Usage: | |
# ruby byebug_test.rb & byebug -R localhost:8080 | |
require 'byebug' | |
require 'byebug/core' | |
Byebug.wait_connection = true | |
Byebug.start_server('127.0.0.1', 8080) | |
puts 1234 | |
byebug | |
puts "foobar" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment