pry-byebug 3.10.0 → 3.11.0
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 +17 -0
- data/README.md +1 -1
- data/lib/pry-byebug/pry_ext.rb +9 -2
- data/lib/pry-byebug/version.rb +1 -1
- metadata +8 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25a9ef05b2fe6a57d1bfe0766a2b7cac3ee195bbc29bc2fb52e34027b16cf3b5
|
4
|
+
data.tar.gz: 1ebb3a1690c01e527508044fecae602b9397739cb370dc446a0e4e34ccc14974
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14828ebd7abf49235bf76e64825d32fc93ce75691b2031c909d98bddfb2bacdfead85b239ab9a23346d8ecca04c3db4a1141c42807ab8dc82a64e3206cafc00b
|
7
|
+
data.tar.gz: 3e30a2036522e2fc706754e00d9985c82172c4d76b61e4f96bbdc241232bfb4cb7e98064522a6c810f365ebbfd7078b1a90218fcf346937fc267d328793e009a
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
## Master (Unreleased)
|
4
4
|
|
5
|
+
## 3.11.0 (2025-03-28)
|
6
|
+
|
7
|
+
### Added
|
8
|
+
|
9
|
+
* Byebug 12 compatibility, with Ruby 3.1, 3.2, and 3.3 support (#434).
|
10
|
+
* Support for pry 0.15 (#428).
|
11
|
+
|
12
|
+
### Removed
|
13
|
+
|
14
|
+
* Support for Ruby 2.7, and 3.0. Pry-byebug no longer installs on these platforms (#433).
|
15
|
+
|
16
|
+
## 3.10.1 (2022-08-16)
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
* Rails console loading a debugger REPL instead of the standard Pry REPL (#392)
|
21
|
+
|
5
22
|
## 3.10.0 (2022-08-15)
|
6
23
|
|
7
24
|
### Added
|
data/README.md
CHANGED
@@ -175,7 +175,7 @@ Tidelift will coordinate the fix and disclosure.
|
|
175
175
|
|
176
176
|
Patches and bug reports are welcome.
|
177
177
|
|
178
|
-
[pry]:
|
178
|
+
[pry]: https://pry.github.io
|
179
179
|
[byebug]: https://github.com/deivid-rodriguez/byebug
|
180
180
|
[pry-debugger]: https://github.com/nixme/pry-debugger
|
181
181
|
[pry-nav]: https://github.com/nixme/pry-nav
|
data/lib/pry-byebug/pry_ext.rb
CHANGED
@@ -5,8 +5,15 @@ require "byebug/processors/pry_processor"
|
|
5
5
|
class << Pry::REPL
|
6
6
|
alias start_without_pry_byebug start
|
7
7
|
|
8
|
-
def start_with_pry_byebug(
|
9
|
-
|
8
|
+
def start_with_pry_byebug(options = {})
|
9
|
+
target = options[:target]
|
10
|
+
|
11
|
+
if target.is_a?(Binding) && PryByebug.file_context?(target)
|
12
|
+
Byebug::PryProcessor.start unless ENV["DISABLE_PRY"]
|
13
|
+
else
|
14
|
+
# No need for the tracer unless we have a file context to step through
|
15
|
+
start_without_pry_byebug(options)
|
16
|
+
end
|
10
17
|
end
|
11
18
|
|
12
19
|
alias start start_with_pry_byebug
|
data/lib/pry-byebug/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pry-byebug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Rodríguez
|
8
8
|
- Gopal Patel
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: byebug
|
@@ -17,14 +16,14 @@ dependencies:
|
|
17
16
|
requirements:
|
18
17
|
- - "~>"
|
19
18
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
19
|
+
version: '12.0'
|
21
20
|
type: :runtime
|
22
21
|
prerelease: false
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
24
23
|
requirements:
|
25
24
|
- - "~>"
|
26
25
|
- !ruby/object:Gem::Version
|
27
|
-
version: '
|
26
|
+
version: '12.0'
|
28
27
|
- !ruby/object:Gem::Dependency
|
29
28
|
name: pry
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -34,7 +33,7 @@ dependencies:
|
|
34
33
|
version: '0.13'
|
35
34
|
- - "<"
|
36
35
|
- !ruby/object:Gem::Version
|
37
|
-
version: '0.
|
36
|
+
version: '0.16'
|
38
37
|
type: :runtime
|
39
38
|
prerelease: false
|
40
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -44,7 +43,7 @@ dependencies:
|
|
44
43
|
version: '0.13'
|
45
44
|
- - "<"
|
46
45
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0.
|
46
|
+
version: '0.16'
|
48
47
|
description: |-
|
49
48
|
Combine 'pry' with 'byebug'. Adds 'step', 'next', 'finish',
|
50
49
|
'continue' and 'break' commands to control execution.
|
@@ -86,7 +85,6 @@ homepage: https://github.com/deivid-rodriguez/pry-byebug
|
|
86
85
|
licenses:
|
87
86
|
- MIT
|
88
87
|
metadata: {}
|
89
|
-
post_install_message:
|
90
88
|
rdoc_options: []
|
91
89
|
require_paths:
|
92
90
|
- lib
|
@@ -94,15 +92,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
94
92
|
requirements:
|
95
93
|
- - ">="
|
96
94
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
95
|
+
version: 3.1.0
|
98
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
97
|
requirements:
|
100
98
|
- - ">="
|
101
99
|
- !ruby/object:Gem::Version
|
102
100
|
version: '0'
|
103
101
|
requirements: []
|
104
|
-
rubygems_version: 3.
|
105
|
-
signing_key:
|
102
|
+
rubygems_version: 3.6.6
|
106
103
|
specification_version: 4
|
107
104
|
summary: Fast debugging with Pry.
|
108
105
|
test_files: []
|