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 +4 -4
- data/CHANGELOG.md +4 -0
- data/GUIDE.md +1 -1
- data/README.md +9 -9
- data/ext/byebug/byebug.c +1 -1
- data/lib/byebug/helpers/eval.rb +1 -1
- data/lib/byebug/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de39ac9fe09e9ed232f63b7d1d33eed6758ad143
|
4
|
+
data.tar.gz: c0046d88bf761274667ba4ef071f7f6795e5268e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b697b0fc6b2429d98cfd69edf5bec326c74d41e1f52aafdff4e0463d10b472c90869306fe78f1b63b479bbcd121f00133c3547ea334900a83d4190733214df47
|
7
|
+
data.tar.gz: ed179163f2a9cc9a90a8fad145cfcda4d16ccb80d28a71dc5f75919d1efe08f8392b9ec07c9cbbb64e55029049cfb381644a2187eb38d822acd81dd382291774
|
data/CHANGELOG.md
CHANGED
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 `.
|
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]
|
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]
|
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]
|
137
|
+
* [pry-byebug] adds `next`, `step`, `finish`, `continue` and `break` commands
|
138
138
|
to `pry` using `byebug`.
|
139
|
-
* [ruby-debug-passenger]
|
139
|
+
* [ruby-debug-passenger] adds a rake task that restarts Passenger with Byebug
|
140
140
|
connected.
|
141
|
-
* [minitest-byebug]
|
142
|
-
* [sublime_debugger]
|
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]
|
157
|
-
* @denofevil, author of [debase]
|
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
|
|
data/ext/byebug/byebug.c
CHANGED
data/lib/byebug/helpers/eval.rb
CHANGED
data/lib/byebug/version.rb
CHANGED
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.
|
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-
|
13
|
+
date: 2015-11-26 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|