Skip to content

Commit

Permalink
Hopefully fixes #52, #53 and #54.
Browse files Browse the repository at this point in the history
Revert f178b50, no idea what I was thinking
about when I did that.... :S
David Rodríguez de Dios committed Feb 24, 2014
1 parent 6b8b109 commit b8f09bf
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/byebug.rb
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
module Byebug

# List of files byebug will ignore while debugging
IGNORED_FILES = Dir.glob('**/*.rb').map { |f| File.expand_path(f) }
IGNORED_FILES = Dir.glob(File.expand_path('../**/*.rb', __FILE__))

# Default options to Byebug.start
DEFAULT_START_SETTINGS = {
2 changes: 1 addition & 1 deletion test/frame_test.rb
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ class TestFrame < TestDsl::TestCase

it 'must set frame to the last one' do
enter 'frame -1'
debug_file('frame') { File.basename(state.file).must_equal 'minitest.rb' }
debug_file('frame') { File.basename(state.file).must_equal 'test_helper.rb' }
end

it 'must not set frame if the frame number is too low' do

0 comments on commit b8f09bf

Please sign in to comment.