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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7486f16eeffbc03edfea35c07db4c82910cb71ef3f972a7291ff6e4035f6e1ad
4
- data.tar.gz: 797f2e6ce033b7bdf2c130be6405b5e3c5dacf46c87e5519a7ae2b08fecd6477
3
+ metadata.gz: abde3ee8ce030cfb4b4db8350d5bbbbab3c5d27f678e8d72d3bd67811935ada6
4
+ data.tar.gz: 55b77914e3f6a464bf459069dadd376ca6b6983d507900997eaea82911d66832
5
5
  SHA512:
6
- metadata.gz: f4930f76efa7722317634e5e2d4c256549b2e9c2b83d6d19446409867c750c5cfe1192cc4c9f80d32990892e627201aa81f426aac7c0caf9b42d598981a830a1
7
- data.tar.gz: 9698c6433c42e612cb70fd914bad02c12964b59f9098536b85d64ddb32d6e6edd9fc1b97355e1ea0aa46cc5452fcc84c650a5848701da43fc2189d01e16a2f19
6
+ metadata.gz: 49df2ec3118914f2fbdc7b1a961336e3e10f9e955cc6c5c33956cf7e213c565e37a4ee32ef11fdb924f45376df6d238c6ff0059e53523bc7aeb249f1d60f8c17
7
+ data.tar.gz: 62392a361636fd1aa5ab69d659cb1d5c033b3593588db1c1cc415084d73b0e8a072d07e2f401069d03582ab9d5423386f0d660887a71d3ac13aa368437fdcdbb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pry-shell (0.6.0)
4
+ pry-shell (0.6.1)
5
5
  pry (>= 0.13.0)
6
6
  tty-markdown
7
7
  tty-prompt
@@ -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(7, true)
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
- @pry = Pry.start_without_pry_byebug(frame._binding, Pry::Shell.active_shell_options)
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(target = nil, options = {})
55
- return start_with_pry_shell(target) if Shell.active_shell_options
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(target)
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(target, Shell.active_shell_options)
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(5, true)
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  class Pry
4
4
  class Shell
5
- VERSION = "0.6.0"
5
+ VERSION = "0.6.1"
6
6
  end
7
7
  end
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.0
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-01-25 00:00:00.000000000 Z
11
+ date: 2023-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry