byebug 8.2.0 → 8.2.1

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: 784b994320d0e3c0fe8f3c4fcfe74bb5fb81bdcd
4
- data.tar.gz: ae9fda6dcd7bbf932171355d8666f3a7ce5dc59f
3
+ metadata.gz: de39ac9fe09e9ed232f63b7d1d33eed6758ad143
4
+ data.tar.gz: c0046d88bf761274667ba4ef071f7f6795e5268e
5
5
  SHA512:
6
- metadata.gz: 42b4da095c53ae1ccb54eac816106918a6e1d00f2ccdc9084dc994322a2f0393d502fed12e19b195d17e012ebf1f0ecd30db21737448ad4d6acd9261d50647fb
7
- data.tar.gz: 88f0c640694ab1acf6fb8fffbe98a2c7ffa94ad5c914e253745a80796f1e14aa2c223e059600a2dfc7f90cbcfe56dda948990dff0b542d61af105572e787f975
6
+ metadata.gz: b697b0fc6b2429d98cfd69edf5bec326c74d41e1f52aafdff4e0463d10b472c90869306fe78f1b63b479bbcd121f00133c3547ea334900a83d4190733214df47
7
+ data.tar.gz: ed179163f2a9cc9a90a8fad145cfcda4d16ccb80d28a71dc5f75919d1efe08f8392b9ec07c9cbbb64e55029049cfb381644a2187eb38d822acd81dd382291774
@@ -1,5 +1,9 @@
1
1
  ## Master (Unreleased)
2
2
 
3
+ ## 8.2.1 - 2015-11-26
4
+ ### Fixed
5
+ * Bug in evaluations using "eval.
6
+
3
7
  ## 8.2.0 - 2015-11-12
4
8
  ### Fixed
5
9
  * [#184](https://github.com/deivid-rodriguez/byebug/issues/184) &
data/GUIDE.md CHANGED
@@ -1418,7 +1418,7 @@ command.
1418
1418
  Byebug uses readline, which handles line editing and retrieval of previous commands.
1419
1419
  Up arrow, for example, moves to the previous byebug command; down arrow moves to the
1420
1420
  next more recent command (provided you are not already at the last command). Command
1421
- history is saved in file `.byebug_hist`. A limit is put on the history size. You
1421
+ history is saved in file `.byebug_history`. A limit is put on the history size. You
1422
1422
  can see this with the `show history size` command. See [history]() for history
1423
1423
  parameters.
1424
1424
 
data/README.md CHANGED
@@ -31,7 +31,7 @@ and offers many of the traditional debugging features such as:
31
31
  * Stepping: Running your program one line at a time.
32
32
  * Breaking: Pausing the program at some event or specified instruction, to
33
33
  examine the current state.
34
- * Evaluating: Basic REPL functionality, although [pry][] does a better job at
34
+ * Evaluating: Basic REPL functionality, although [pry] does a better job at
35
35
  that.
36
36
  * Tracking: Keeping track of the different values of your variables or the
37
37
  different lines executed by your program.
@@ -53,7 +53,7 @@ Windows [![Vey][vey]][vey_url]
53
53
  ## Requirements
54
54
 
55
55
  * Required: MRI 2.0.0 or higher. For debugging ruby 1.9.3 or older, use
56
- [debugger][].
56
+ [debugger].
57
57
 
58
58
  * Recommended:
59
59
  - MRI 2.1.7 or higher.
@@ -121,7 +121,7 @@ are debugging rails, start the server and once the execution gets to your
121
121
 
122
122
  Byebug tries to follow [semantic versioning](http://semver.org) and tries to
123
123
  bump major version only when backwards incompatible changes are released.
124
- Backwards compatibility is targeted to [pry-byebug][] and any other plugins
124
+ Backwards compatibility is targeted to [pry-byebug] and any other plugins
125
125
  relying on `byebug`.
126
126
 
127
127
 
@@ -134,12 +134,12 @@ started. Proper documentation will be eventually written.
134
134
 
135
135
  ## Related projects
136
136
 
137
- * [pry-byebug][] adds `next`, `step`, `finish`, `continue` and `break` commands
137
+ * [pry-byebug] adds `next`, `step`, `finish`, `continue` and `break` commands
138
138
  to `pry` using `byebug`.
139
- * [ruby-debug-passenger][] adds a rake task that restarts Passenger with Byebug
139
+ * [ruby-debug-passenger] adds a rake task that restarts Passenger with Byebug
140
140
  connected.
141
- * [minitest-byebug][] starts a byebug session on minitest failures.
142
- * [sublime_debugger][] provides a plugin for ruby debugging on Sublime Text.
141
+ * [minitest-byebug] starts a byebug session on minitest failures.
142
+ * [sublime_debugger] provides a plugin for ruby debugging on Sublime Text.
143
143
 
144
144
 
145
145
  ## Contribute
@@ -153,8 +153,8 @@ Everybody who has ever contributed to this forked and reforked piece of
153
153
  software, especially:
154
154
 
155
155
  * @ko1, author of the awesome TracePoint API for Ruby.
156
- * @cldwalker, [debugger][]'s maintainer.
157
- * @denofevil, author of [debase][], the starting point of this.
156
+ * @cldwalker, [debugger]'s maintainer.
157
+ * @denofevil, author of [debase], the starting point of this.
158
158
  * @kevjames3 for testing, bug reports and the interest in the project.
159
159
  * @FooBarWidget for working and helping with remote debugging.
160
160
 
@@ -630,7 +630,7 @@ Started(VALUE self)
630
630
  {
631
631
  UNUSED(self);
632
632
 
633
- return IS_STARTED;
633
+ return IS_STARTED ? Qtrue : Qfalse;
634
634
  }
635
635
 
636
636
  /*
@@ -56,7 +56,7 @@ module Byebug
56
56
  private
57
57
 
58
58
  def safe_eval(str, binding)
59
- binding.eval(str, '(byebug)', 1)
59
+ binding.eval(str.gsub(/\Aeval /, ''), '(byebug)', 1)
60
60
  rescue StandardError, ScriptError => e
61
61
  yield(e)
62
62
  end
@@ -2,5 +2,5 @@
2
2
  # Reopen main module to define the library version
3
3
  #
4
4
  module Byebug
5
- VERSION = '8.2.0'
5
+ VERSION = '8.2.1'
6
6
  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: 8.2.0
4
+ version: 8.2.1
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: 2015-11-12 00:00:00.000000000 Z
13
+ date: 2015-11-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler