byebug 9.0.1 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 071784fca53d0ea070218f3424abbb336001924d
4
- data.tar.gz: 8b6c75eb8356a99d200a43a319b72637074b75ef
3
+ metadata.gz: 80b0070dd4542ad3a4b03b56cb55d340f6fff374
4
+ data.tar.gz: 012595cd2ab1bbceb49884f387b58775c8c8b181
5
5
  SHA512:
6
- metadata.gz: cb2f5b013a5a66b859434a7eaabe5058ae35e833592bec69121ff8838b7750b96f861e9dc4945f7009297093aee7178e546a42fb75dc5058c4153b2fe94bd461
7
- data.tar.gz: 0fe21ef4e87202de725f8344f40af58141f533ccb4980c78eb8af644cbb1c57af529b37d70e3addf0b673528991cfb36220120356783964c9d85854f4223dad3
6
+ metadata.gz: 83b18f103aed1d6242b30f39d8b22c852a971b6892ae81d7660a8df51502d101c887211f13c5f74c1cc9bd25ba4a04c678e22de7ed463e205470acbeea3af0a3
7
+ data.tar.gz: 4da42772a75c913e4c9270be8e9c24a663fbaac53f38542c6be93917e5995652a85811ba28175657ecb7edad59a4f3f659f8569ca00577eb4685dd1d7d5af9dd
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 9.0.2 - 2016-05-15
6
+
7
+ ### Fixed
8
+
9
+ * Skip to get a line in eval context (#263, thanks @k0kubun).
10
+ * Debugger getting disabled after `continue` even when linetrace is enabled
11
+ (#264, thanks @k0kubun).
12
+
5
13
  ## 9.0.1 - 2016-05-14
6
14
 
7
15
  * `quit` never exiting when remote debugging (#201).
@@ -676,6 +676,9 @@ Stoppable(VALUE self)
676
676
  if (post_mortem == Qtrue)
677
677
  return Qfalse;
678
678
 
679
+ if (RTEST(tracing))
680
+ return Qfalse;
681
+
679
682
  context = Current_context(self);
680
683
  if (!NIL_P(context))
681
684
  {
@@ -54,7 +54,7 @@ module Byebug
54
54
  # True for special files like -e, false otherwise
55
55
  #
56
56
  def virtual_file?(name)
57
- ['(irb)', '-e', '(byebug)'].include?(name)
57
+ ['(irb)', '-e', '(byebug)', '(eval)'].include?(name)
58
58
  end
59
59
  end
60
60
  end
@@ -3,5 +3,5 @@
3
3
  # Reopen main module to define the library version
4
4
  #
5
5
  module Byebug
6
- VERSION = '9.0.1'.freeze
6
+ VERSION = '9.0.2'.freeze
7
7
  end
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: 9.0.1
4
+ version: 9.0.2
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: 2016-05-14 00:00:00.000000000 Z
13
+ date: 2016-05-15 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler