We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c22c5 commit acd5fc5Copy full SHA for acd5fc5
lib/debug/session.rb
@@ -2190,6 +2190,7 @@ def self.require_location
2190
case loc.absolute_path
2191
when dir_prefix
2192
when %r{rubygems/core_ext/kernel_require\.rb}
2193
+ when %r{bundled_gems\.rb}
2194
else
2195
return loc if loc.absolute_path
2196
end
test/console/rdbg_option_test.rb
@@ -72,7 +72,7 @@ def program
72
def test_debugger_stops_immediately
73
run_rdbg(program, options: "--stop-at-load") do
74
# stops at the earliest possible location
75
- assert_line_text(/\[C\] Kernel#require/)
+ assert_line_text(/\[C\] Kernel[#\.]require/)
76
type "c"
77
type "a + 'bar'"
78
assert_line_text(/foobar/)
0 commit comments