pry-shell 0.6.0 → 0.6.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/Gemfile.lock +1 -1
- data/lib/pry/shell/patches/pry_byebug.rb +21 -11
- data/lib/pry/shell/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abde3ee8ce030cfb4b4db8350d5bbbbab3c5d27f678e8d72d3bd67811935ada6
|
4
|
+
data.tar.gz: 55b77914e3f6a464bf459069dadd376ca6b6983d507900997eaea82911d66832
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49df2ec3118914f2fbdc7b1a961336e3e10f9e955cc6c5c33956cf7e213c565e37a4ee32ef11fdb924f45376df6d238c6ff0059e53523bc7aeb249f1d60f8c17
|
7
|
+
data.tar.gz: 62392a361636fd1aa5ab69d659cb1d5c033b3593588db1c1cc415084d73b0e8a072d07e2f401069d03582ab9d5423386f0d660887a71d3ac13aa368437fdcdbb
|
data/Gemfile.lock
CHANGED
@@ -11,21 +11,29 @@ begin
|
|
11
11
|
Byebug.start
|
12
12
|
Setting[:autolist] = false
|
13
13
|
Context.processor = self
|
14
|
-
Byebug.current_context.step_out(
|
14
|
+
Byebug.current_context.step_out(8, true)
|
15
15
|
at_exit { teardown! }
|
16
16
|
end
|
17
17
|
|
18
|
-
private
|
19
|
-
|
20
18
|
def teardown!
|
21
19
|
Pry::Shell.remove_active_connection!
|
22
20
|
Pry::Shell.clear_shell_options!
|
23
21
|
end
|
24
22
|
end
|
25
23
|
|
24
|
+
def initialize(...)
|
25
|
+
super
|
26
|
+
|
27
|
+
# Set the interface for byebug outputs
|
28
|
+
@interface = Byebug::RemoteInterface.new(Pry::Shell.active_shell_options[:output])
|
29
|
+
end
|
30
|
+
|
26
31
|
def resume_pry
|
27
32
|
run do
|
28
33
|
pry_started? ? start_new_pry_repl : start_new_pry_session
|
34
|
+
|
35
|
+
# Close shell session after repl loop
|
36
|
+
self.class.teardown!
|
29
37
|
end
|
30
38
|
rescue DRb::DRbConnError
|
31
39
|
puts "DRb connection failed!"
|
@@ -38,7 +46,9 @@ begin
|
|
38
46
|
end
|
39
47
|
|
40
48
|
def start_new_pry_session
|
41
|
-
|
49
|
+
repl_options = Pry::Shell.active_shell_options.merge(target: frame._binding)
|
50
|
+
|
51
|
+
@pry = Pry::Shell::Repl.start_without_pry_byebug(repl_options)
|
42
52
|
end
|
43
53
|
|
44
54
|
def start_new_pry_repl
|
@@ -51,17 +61,17 @@ begin
|
|
51
61
|
class Shell
|
52
62
|
module Patches
|
53
63
|
module PryByebug
|
54
|
-
def start_with_pry_byebug(
|
55
|
-
return start_with_pry_shell(
|
64
|
+
def start_with_pry_byebug(options = {})
|
65
|
+
return start_with_pry_shell(options) if Shell.active_shell_options
|
56
66
|
|
57
67
|
super
|
58
68
|
end
|
59
69
|
|
60
|
-
def start_with_pry_shell(
|
70
|
+
def start_with_pry_shell(options)
|
61
71
|
if Shell.active_shell_options[:enable_byebug?]
|
62
72
|
::Byebug::PryShellProcessor.start
|
63
73
|
else
|
64
|
-
start_without_pry_byebug(
|
74
|
+
start_without_pry_byebug(options)
|
65
75
|
end
|
66
76
|
end
|
67
77
|
end
|
@@ -72,15 +82,15 @@ begin
|
|
72
82
|
|
73
83
|
# We should step out one more frame as we are
|
74
84
|
# prepending another module to the hierarchy
|
75
|
-
::Byebug.current_context.step_out(
|
85
|
+
::Byebug.current_context.step_out(6, true)
|
76
86
|
end
|
77
87
|
end
|
78
88
|
end
|
79
89
|
end
|
80
90
|
end
|
81
91
|
|
82
|
-
Pry.singleton_class.prepend(Pry::Shell::Patches::PryByebug)
|
83
|
-
Pry.singleton_class.alias_method(:start, :start_with_pry_byebug)
|
92
|
+
Pry::REPL.singleton_class.prepend(Pry::Shell::Patches::PryByebug)
|
93
|
+
Pry::REPL.singleton_class.alias_method(:start, :start_with_pry_byebug)
|
84
94
|
|
85
95
|
Byebug::PryProcessor.singleton_class.prepend(Pry::Shell::Patches::PryProcessor)
|
86
96
|
rescue LoadError # rubocop:disable Lint/SuppressedException
|
data/lib/pry/shell/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pry-shell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mehmet Emin INAC
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|