byebug 2.6.0 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0bd29ed7fa0a4c5e980c3f90ea5187a0723d1ea
4
- data.tar.gz: 177807eb3c0b4b5bf8befb1e196457dc7fbd89ad
3
+ metadata.gz: 818c1a2ce9a37a4dcbf84f6b3e4932335fe94e9d
4
+ data.tar.gz: d90fd4507ad0a2cd3c8c1f250852ae24d158161a
5
5
  SHA512:
6
- metadata.gz: 379441b4bb0d2ab10d3a547757f0c3921e2043cda11883c2449243d747bb17d5cc4c81093d6f476225801fe1d41494285bf5953f642458e581673f0bc77682c4
7
- data.tar.gz: 9401628eaeae78d332c03bf97d2c2e61093b79cf7bb73b23fe3658130126f6ff3321eee3c4da141340f5e387a87f93b6b08f1f149bdd6aa0cc70a4fcd63e26f7
6
+ metadata.gz: e6ee7f21fa7997aa8fa88aba5cfaf3135541013ca5e45411db5bacfdb7727c6c36492de7db70c811f036e85391c9692d03da98d24b33e607cded2d51da6ca4f0
7
+ data.tar.gz: 1751d22e086c298da4dc76311328e66e57cf9d779d33c14116c542c951515127fadfac72b5808e64db808c7c4c5440c05c7acb110e0640dc5f6c8f8c639cdc7b
@@ -1,3 +1,7 @@
1
+ # 2.7.0
2
+ * Bugfix release (#52, #53 and #54)
3
+
4
+
1
5
  # 2.6.0
2
6
 
3
7
  * Fix circular dependency that was affecting `pry-byebug`, thanks @andreychernih
@@ -12,7 +12,7 @@ require 'linecache19'
12
12
  module Byebug
13
13
 
14
14
  # List of files byebug will ignore while debugging
15
- IGNORED_FILES = Dir.glob('**/*.rb').map { |f| File.expand_path(f) }
15
+ IGNORED_FILES = Dir.glob(File.expand_path('../**/*.rb', __FILE__))
16
16
 
17
17
  # Default options to Byebug.start
18
18
  DEFAULT_START_SETTINGS = {
@@ -1,3 +1,3 @@
1
1
  module Byebug
2
- VERSION = '2.6.0'
2
+ VERSION = '2.7.0'
3
3
  end
@@ -86,7 +86,7 @@ class TestFrame < TestDsl::TestCase
86
86
 
87
87
  it 'must set frame to the last one' do
88
88
  enter 'frame -1'
89
- debug_file('frame') { File.basename(state.file).must_equal 'minitest.rb' }
89
+ debug_file('frame') { File.basename(state.file).must_equal 'test_helper.rb' }
90
90
  end
91
91
 
92
92
  it 'must not set frame if the frame number is too low' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: byebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Rodriguez
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-02-08 00:00:00.000000000 Z
13
+ date: 2014-02-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: columnize