pry-stack_explorer 0.4.9.1 → 0.4.13
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 +5 -5
- data/.gitignore +2 -0
- data/.travis.yml +15 -3
- data/CHANGELOG +11 -0
- data/Gemfile +1 -1
- data/README.md +44 -123
- data/Rakefile +5 -3
- data/lib/pry-stack_explorer.rb +5 -4
- data/lib/pry-stack_explorer/commands.rb +4 -4
- data/lib/pry-stack_explorer/version.rb +3 -3
- data/lib/pry-stack_explorer/when_started_hook.rb +3 -2
- data/pry-stack_explorer.gemspec +17 -28
- data/test/helper.rb +0 -2
- metadata +26 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9c6f819c88e78fffb2a37dd3f813f11919e03985445b2c9c8315dfe556a3db04
|
4
|
+
data.tar.gz: e5726e66eed01ccf5ccca84e7c06e35b1d675282c25e4457b7badb5035044b3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0237ac30f8e1b7ec3ea7cb956e6936355b8217cf138cf040270301f52b0ff8d2568e698eaeaf0ec374d09029ba9e7f89df9205594d8f387804330f359c67b0b0
|
7
|
+
data.tar.gz: 01ab7310c9323901a3e3ba33f4b0dfb3f0832c24aabb2388a25f09452f95a9e5a3e76cda06812cde7d221a2cc36e3fef9048fe8b3f5ba5650193638ff318955e
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,13 +1,25 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
1
3
|
script:
|
2
4
|
rake test --trace
|
3
5
|
|
6
|
+
before_install:
|
7
|
+
- gem update --system
|
8
|
+
|
4
9
|
rvm:
|
5
|
-
-
|
6
|
-
-
|
10
|
+
- 2.5.3
|
11
|
+
- 2.6.6
|
12
|
+
- 2.7.1
|
13
|
+
- ruby-head
|
14
|
+
|
15
|
+
matrix:
|
16
|
+
allow_failures:
|
17
|
+
- rvm: ruby-head
|
18
|
+
fast_finish: true
|
7
19
|
|
8
20
|
notifications:
|
9
21
|
irc: "irc.freenode.org#pry"
|
10
|
-
|
22
|
+
email:
|
11
23
|
- jrmair@gmail.com
|
12
24
|
|
13
25
|
branches:
|
data/CHANGELOG
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
## v0.5.0 (21 May 2020)
|
2
|
+
* Should fix most deprecation warnings as of release
|
3
|
+
* Require Pry 0.13
|
4
|
+
* Fix Pry#_pry_ => #pry_instance deprecation
|
5
|
+
|
6
|
+
## v0.4.13 (31 December 2020)
|
7
|
+
* Require Ruby 2.5 in Gemspec (#54)
|
8
|
+
|
9
|
+
## v0.4.11 (21 May 2020)
|
10
|
+
* Special branch for Ruby 2.5
|
11
|
+
* Fix Pry 0.13+ deprecations and broken `show-stack`
|
data/Gemfile
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
source
|
1
|
+
source 'https://rubygems.org'
|
2
2
|
gemspec
|
data/README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
pry-stack_explorer
|
2
2
|
===========
|
3
3
|
|
4
|
-
(C) John Mair (banisterfiend) 2011
|
5
|
-
|
6
4
|
_Walk the stack in a Pry session_
|
7
5
|
|
6
|
+
Ruby versions: **Branch v0.5 requires Ruby 2.6+**. Branch v0.4.11+ will remain for Ruby 2.5 users until its EOL in March 2021.
|
7
|
+
|
8
|
+
---
|
9
|
+
|
8
10
|
pry-stack_explorer is a plugin for the [Pry](http://pry.github.com)
|
9
11
|
REPL that enables the user to navigate the call-stack.
|
10
12
|
|
@@ -15,147 +17,66 @@ Unlike `ruby-debug`, pry-stack_explorer incurs no runtime cost and
|
|
15
17
|
enables navigation right up the call-stack to the birth of the
|
16
18
|
program.
|
17
19
|
|
18
|
-
pry-stack_explorer is currently designed to work on **Rubinius and MRI
|
19
|
-
Ruby 1.9.2+ (including 1.9.3)**. Support for other Ruby versions and
|
20
|
-
implementations is planned for the future.
|
21
|
-
|
22
20
|
The `up`, `down`, `frame` and `show-stack` commands are provided. See
|
23
21
|
Pry's in-session help for more information on any of these commands.
|
24
22
|
|
25
|
-
|
23
|
+
## Usage
|
24
|
+
Provides commands available in Pry sessions.
|
26
25
|
|
27
|
-
|
26
|
+
Commands:
|
27
|
+
* `up`/`down` - Move up or down the call stack
|
28
|
+
* `frame [n]` - Go to frame *n*
|
29
|
+
* `show-stack` - Show call stack
|
28
30
|
|
29
|
-
* Install the [gem](https://rubygems.org/gems/pry-stack_explorer): `gem install pry-stack_explorer`
|
30
|
-
* Read the [documentation](http://rdoc.info/github/banister/pry-stack_explorer/master/file/README.md)
|
31
|
-
* See the [source code](http://github.com/pry/pry-stack_explorer)
|
32
|
-
* See the [wiki](https://github.com/pry/pry-stack_explorer/wiki) for in-depth usage information.
|
33
31
|
|
34
|
-
|
35
|
-
--------
|
32
|
+
## Install
|
36
33
|
|
34
|
+
In Gemfile:
|
35
|
+
```rb
|
36
|
+
gem 'pry-stack_explorer', '~> 0.5.0'
|
37
37
|
```
|
38
|
-
[8] pry(J)> show-stack
|
39
|
-
|
40
|
-
Showing all accessible frames in stack:
|
41
|
-
--
|
42
|
-
=> #0 [method] c <Object#c()>
|
43
|
-
#1 [block] block in b <Object#b()>
|
44
|
-
#2 [method] b <Object#b()>
|
45
|
-
#3 [method] alphabet <Object#alphabet(y)>
|
46
|
-
#4 [class] <class:J>
|
47
|
-
#5 [block] block in <main>
|
48
|
-
#6 [eval] <main>
|
49
|
-
#7 [top] <main>
|
50
|
-
[9] pry(J)> frame 3
|
51
|
-
|
52
|
-
Frame number: 3/7
|
53
|
-
Frame type: method
|
54
|
-
|
55
|
-
From: /Users/john/ruby/projects/pry-stack_explorer/examples/example.rb @ line 10 in Object#alphabet:
|
56
|
-
|
57
|
-
5:
|
58
|
-
6: require 'pry-stack_explorer'
|
59
|
-
7:
|
60
|
-
8: def alphabet(y)
|
61
|
-
9: x = 20
|
62
|
-
=> 10: b
|
63
|
-
11: end
|
64
|
-
12:
|
65
|
-
13: def b
|
66
|
-
14: x = 30
|
67
|
-
15: proc {
|
68
|
-
[10] pry(J)> x
|
69
|
-
=> 20
|
70
|
-
```
|
71
|
-
|
72
|
-
Example: Modifying state in a caller
|
73
|
-
-------
|
74
38
|
|
75
39
|
```
|
76
|
-
|
77
|
-
Frame type: method
|
78
|
-
|
79
|
-
From: /Users/john/ruby/projects/pry-stack_explorer/examples/example2.rb @ line 15 in Object#beta:
|
80
|
-
|
81
|
-
10: beta
|
82
|
-
11: puts x
|
83
|
-
12: end
|
84
|
-
13:
|
85
|
-
14: def beta
|
86
|
-
=> 15: binding.pry
|
87
|
-
16: end
|
88
|
-
17:
|
89
|
-
18: alpha
|
90
|
-
[1] pry(main)> show-stack
|
91
|
-
|
92
|
-
Showing all accessible frames in stack:
|
93
|
-
--
|
94
|
-
=> #0 [method] beta <Object#beta()>
|
95
|
-
#1 [method] alpha <Object#alpha()>
|
96
|
-
#2 [eval] <main>
|
97
|
-
#3 [top] <main>
|
98
|
-
[2] pry(main)> up
|
99
|
-
|
100
|
-
Frame number: 1/3
|
101
|
-
Frame type: method
|
102
|
-
|
103
|
-
From: /Users/john/ruby/projects/pry-stack_explorer/examples/example2.rb @ line 10 in Object#alpha:
|
104
|
-
|
105
|
-
5:
|
106
|
-
6:
|
107
|
-
7:
|
108
|
-
8: def alpha
|
109
|
-
9: x = "hello"
|
110
|
-
=> 10: beta
|
111
|
-
11: puts x
|
112
|
-
12: end
|
113
|
-
13:
|
114
|
-
14: def beta
|
115
|
-
15: binding.pry
|
116
|
-
[3] pry(main)> x = "goodbye"
|
117
|
-
=> "goodbye"
|
118
|
-
[4] pry(main)> ^D
|
119
|
-
|
120
|
-
OUTPUT: goodbye
|
40
|
+
gem install pry-stack_explorer
|
121
41
|
```
|
122
42
|
|
123
|
-
|
43
|
+
* Read the [documentation](http://rdoc.info/github/banister/pry-stack_explorer/master/file/README.md)
|
44
|
+
* See the [wiki](https://github.com/pry/pry-stack_explorer/wiki) for in-depth usage information.
|
124
45
|
|
125
|
-
|
126
|
-
|
46
|
+
Example:
|
47
|
+
--------
|
48
|
+
Here we run the following ruby script:
|
49
|
+
```Ruby
|
50
|
+
require 'pry-stack_explorer'
|
127
51
|
|
128
|
-
|
129
|
-
|
52
|
+
def alpha
|
53
|
+
x = "hello"
|
54
|
+
beta
|
55
|
+
puts x
|
56
|
+
end
|
130
57
|
|
131
|
-
|
132
|
-
|
58
|
+
def beta
|
59
|
+
binding.pry
|
60
|
+
end
|
133
61
|
|
134
|
-
|
62
|
+
alpha
|
63
|
+
```
|
135
64
|
|
65
|
+
We wander around the stack a little bit, and modify the state of a frame above the one we `binding.pry`'d at.
|
136
66
|
|
137
|
-
|
138
|
-
-------
|
67
|
+
[](https://asciinema.org/a/257713)
|
139
68
|
|
140
|
-
(
|
69
|
+
Output from above is `Goodbye` as we changed the `x` local inside the `alpha` (caller) stack frame.
|
141
70
|
|
142
|
-
|
71
|
+
Compatible versions
|
72
|
+
-------------------
|
73
|
+
* v0.5: Ruby 2.6+, Pry 0.13+
|
74
|
+
* v0.4.11: Ruby 2.5, Pry 0.12+ (branch `works-with-ruby-2-5`)
|
75
|
+
* v0.4.9.3: Older versions
|
143
76
|
|
144
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
145
|
-
a copy of this software and associated documentation files (the
|
146
|
-
'Software'), to deal in the Software without restriction, including
|
147
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
148
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
149
|
-
permit persons to whom the Software is furnished to do so, subject to
|
150
|
-
the following conditions:
|
151
77
|
|
152
|
-
|
153
|
-
|
78
|
+
License
|
79
|
+
-------
|
80
|
+
Released under the [MIT License](https://github.com/pry/pry-stack_explorer/blob/master/LICENSE) by John Mair (banisterfiend) and contributors
|
154
81
|
|
155
|
-
|
156
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
157
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
158
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
159
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
160
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
161
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
82
|
+
Contributions to this gem are released under the same license.
|
data/Rakefile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
|
1
3
|
$:.unshift 'lib'
|
2
4
|
|
3
5
|
dlext = RbConfig::CONFIG['DLEXT']
|
@@ -33,12 +35,12 @@ end
|
|
33
35
|
|
34
36
|
desc "run pry with plugin enabled"
|
35
37
|
task :pry do
|
36
|
-
exec("pry -
|
38
|
+
exec("pry -I#{direc}/lib/ -r #{direc}/lib/#{PROJECT_NAME}")
|
37
39
|
end
|
38
40
|
|
39
41
|
desc "Run example"
|
40
42
|
task :example do
|
41
|
-
sh "ruby -
|
43
|
+
sh "ruby -I#{direc}/lib/ #{direc}/examples/example.rb "
|
42
44
|
end
|
43
45
|
|
44
46
|
desc "Run example2"
|
@@ -61,7 +63,7 @@ task :default => :test
|
|
61
63
|
|
62
64
|
desc "run tests"
|
63
65
|
task :test do
|
64
|
-
sh "bacon -Itest -
|
66
|
+
sh "bacon -Itest -a -q"
|
65
67
|
end
|
66
68
|
|
67
69
|
desc "generate gemspec"
|
data/lib/pry-stack_explorer.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# pry-stack_explorer.rb
|
2
2
|
# (C) John Mair (banisterfiend); MIT license
|
3
3
|
|
4
|
+
require "pry" unless defined?(::Pry)
|
4
5
|
require "pry-stack_explorer/version"
|
5
6
|
require "pry-stack_explorer/commands"
|
6
7
|
require "pry-stack_explorer/frame_manager"
|
@@ -125,10 +126,10 @@ Pry.config.commands.import PryStackExplorer::Commands
|
|
125
126
|
|
126
127
|
# monkey-patch the whereami command to show some frame information,
|
127
128
|
# useful for navigating stack.
|
128
|
-
Pry.config.
|
129
|
-
if PryStackExplorer.frame_manager(
|
130
|
-
bindings = PryStackExplorer.frame_manager(
|
131
|
-
binding_index = PryStackExplorer.frame_manager(
|
129
|
+
Pry.config.hooks.add_hook(:before_whereami, :stack_explorer) do
|
130
|
+
if PryStackExplorer.frame_manager(pry_instance) && !internal_binding?(target)
|
131
|
+
bindings = PryStackExplorer.frame_manager(pry_instance).bindings
|
132
|
+
binding_index = PryStackExplorer.frame_manager(pry_instance).binding_index
|
132
133
|
|
133
134
|
output.puts "\n"
|
134
135
|
output.puts "#{Pry::Helpers::Text.bold('Frame number:')} #{binding_index}/#{bindings.size - 1}"
|
@@ -5,13 +5,13 @@ module PryStackExplorer
|
|
5
5
|
# @return [PryStackExplorer::FrameManager] The active frame manager for
|
6
6
|
# the current `Pry` instance.
|
7
7
|
def frame_manager
|
8
|
-
PryStackExplorer.frame_manager(
|
8
|
+
PryStackExplorer.frame_manager(pry_instance)
|
9
9
|
end
|
10
10
|
|
11
11
|
# @return [Array<PryStackExplorer::FrameManager>] All the frame
|
12
12
|
# managers for the current `Pry` instance.
|
13
13
|
def frame_managers
|
14
|
-
PryStackExplorer.frame_managers(
|
14
|
+
PryStackExplorer.frame_managers(pry_instance)
|
15
15
|
end
|
16
16
|
|
17
17
|
# @return [Boolean] Whether there is a context to return to once
|
@@ -125,7 +125,7 @@ module PryStackExplorer
|
|
125
125
|
yield(b)
|
126
126
|
end
|
127
127
|
|
128
|
-
|
128
|
+
frame_manager.bindings.index(new_frame)
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
@@ -292,7 +292,7 @@ module PryStackExplorer
|
|
292
292
|
output.puts "No caller stack available!"
|
293
293
|
else
|
294
294
|
content = ""
|
295
|
-
content << "\n#{
|
295
|
+
content << "\n#{bold("Showing all accessible frames in stack (#{frame_manager.bindings.size} in total):")}\n--\n"
|
296
296
|
|
297
297
|
base_frame_index, frames = selected_stack_frames
|
298
298
|
frames.each_with_index do |b, index|
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module PryStackExplorer
|
2
|
-
VERSION =
|
3
|
-
end
|
1
|
+
module PryStackExplorer
|
2
|
+
VERSION = '0.4.13'
|
3
|
+
end
|
@@ -21,6 +21,7 @@ module PryStackExplorer
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def call(target, options, _pry_)
|
24
|
+
target ||= _pry_.binding_stack.first if _pry_
|
24
25
|
options = {
|
25
26
|
:call_stack => true,
|
26
27
|
:initial_frame => 0
|
@@ -57,9 +58,9 @@ module PryStackExplorer
|
|
57
58
|
bindings.drop(start_frame_index + 1)
|
58
59
|
end
|
59
60
|
|
60
|
-
# remove pry-nav / pry-debugger frames
|
61
|
+
# remove pry-nav / pry-debugger / pry-byebug frames
|
61
62
|
def remove_debugger_frames(bindings)
|
62
|
-
bindings.drop_while { |b| b.eval("__FILE__") =~ /pry-(?:nav|debugger)/ }
|
63
|
+
bindings.drop_while { |b| b.eval("__FILE__") =~ /pry-(?:nav|debugger|byebug)/ }
|
63
64
|
end
|
64
65
|
|
65
66
|
# binding.pry frame
|
data/pry-stack_explorer.gemspec
CHANGED
@@ -1,39 +1,28 @@
|
|
1
|
-
|
1
|
+
require File.expand_path('../lib/pry-stack_explorer/version', __FILE__)
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "pry-stack_explorer"
|
5
|
-
s.version =
|
5
|
+
s.version = PryStackExplorer::VERSION
|
6
6
|
|
7
|
-
s.
|
7
|
+
s.required_ruby_version = ">= 2.5.0"
|
8
8
|
s.authors = ["John Mair (banisterfiend)"]
|
9
|
-
s.date = "2013-08-03"
|
10
|
-
s.description = "Walk the stack in a Pry session"
|
11
9
|
s.email = "jrmair@gmail.com"
|
10
|
+
|
11
|
+
s.license = "MIT"
|
12
|
+
|
13
|
+
s.summary = "Walk the stack in a Pry session"
|
14
|
+
|
12
15
|
s.files = [".gemtest", ".gitignore", ".travis.yml", ".yardopts", "CHANGELOG", "Gemfile", "LICENSE", "README.md", "Rakefile", "examples/example.rb", "examples/example2.rb", "examples/example3.rb", "lib/pry-stack_explorer.rb", "lib/pry-stack_explorer/commands.rb", "lib/pry-stack_explorer/frame_manager.rb", "lib/pry-stack_explorer/version.rb", "lib/pry-stack_explorer/when_started_hook.rb", "pry-stack_explorer.gemspec", "test/helper.rb", "test/test_commands.rb", "test/test_frame_manager.rb", "test/test_stack_explorer.rb", "tester.rb"]
|
13
|
-
s.homepage = "https://github.com/pry/pry-stack_explorer"
|
14
16
|
s.require_paths = ["lib"]
|
15
|
-
s.rubygems_version = "2.0.3"
|
16
|
-
s.summary = "Walk the stack in a Pry session"
|
17
17
|
s.test_files = ["test/helper.rb", "test/test_commands.rb", "test/test_frame_manager.rb", "test/test_stack_explorer.rb"]
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
s.add_dependency(%q<binding_of_caller>, [">= 0.7"])
|
29
|
-
s.add_dependency(%q<pry>, [">= 0.9.11"])
|
30
|
-
s.add_dependency(%q<bacon>, ["~> 1.1.0"])
|
31
|
-
s.add_dependency(%q<rake>, ["~> 0.9"])
|
32
|
-
end
|
33
|
-
else
|
34
|
-
s.add_dependency(%q<binding_of_caller>, [">= 0.7"])
|
35
|
-
s.add_dependency(%q<pry>, [">= 0.9.11"])
|
36
|
-
s.add_dependency(%q<bacon>, ["~> 1.1.0"])
|
37
|
-
s.add_dependency(%q<rake>, ["~> 0.9"])
|
38
|
-
end
|
19
|
+
s.homepage = "https://github.com/pry/pry-stack_explorer"
|
20
|
+
|
21
|
+
s.specification_version = 4
|
22
|
+
|
23
|
+
s.add_runtime_dependency 'binding_of_caller', '~> 0.7'
|
24
|
+
s.add_runtime_dependency 'pry', '~> 0.13'
|
25
|
+
|
26
|
+
s.add_development_dependency 'bacon', '~> 1.1.0'
|
27
|
+
s.add_development_dependency 'rake', '~> 0.9'
|
39
28
|
end
|
data/test/helper.rb
CHANGED
@@ -23,8 +23,6 @@ class << Pry
|
|
23
23
|
Pry.pager = false
|
24
24
|
Pry.config.should_load_rc = false
|
25
25
|
Pry.config.should_load_plugins = false
|
26
|
-
Pry.config.history.should_load = false
|
27
|
-
Pry.config.history.should_save = false
|
28
26
|
Pry.config.auto_indent = false
|
29
27
|
Pry.config.hooks = Pry::Hooks.new
|
30
28
|
Pry.config.collision_warning = false
|
metadata
CHANGED
@@ -1,81 +1,81 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pry-stack_explorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Mair (banisterfiend)
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: binding_of_caller
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0.7'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0.7'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: '0.13'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: '0.13'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bacon
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - ~>
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: 1.1.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 1.1.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - ~>
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0.9'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - ~>
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0.9'
|
69
|
-
description:
|
69
|
+
description:
|
70
70
|
email: jrmair@gmail.com
|
71
71
|
executables: []
|
72
72
|
extensions: []
|
73
73
|
extra_rdoc_files: []
|
74
74
|
files:
|
75
|
-
- .gemtest
|
76
|
-
- .gitignore
|
77
|
-
- .travis.yml
|
78
|
-
- .yardopts
|
75
|
+
- ".gemtest"
|
76
|
+
- ".gitignore"
|
77
|
+
- ".travis.yml"
|
78
|
+
- ".yardopts"
|
79
79
|
- CHANGELOG
|
80
80
|
- Gemfile
|
81
81
|
- LICENSE
|
@@ -96,26 +96,26 @@ files:
|
|
96
96
|
- test/test_stack_explorer.rb
|
97
97
|
- tester.rb
|
98
98
|
homepage: https://github.com/pry/pry-stack_explorer
|
99
|
-
licenses:
|
99
|
+
licenses:
|
100
|
+
- MIT
|
100
101
|
metadata: {}
|
101
|
-
post_install_message:
|
102
|
+
post_install_message:
|
102
103
|
rdoc_options: []
|
103
104
|
require_paths:
|
104
105
|
- lib
|
105
106
|
required_ruby_version: !ruby/object:Gem::Requirement
|
106
107
|
requirements:
|
107
|
-
- -
|
108
|
+
- - ">="
|
108
109
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
110
|
+
version: 2.5.0
|
110
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
112
|
requirements:
|
112
|
-
- -
|
113
|
+
- - ">="
|
113
114
|
- !ruby/object:Gem::Version
|
114
115
|
version: '0'
|
115
116
|
requirements: []
|
116
|
-
|
117
|
-
|
118
|
-
signing_key:
|
117
|
+
rubygems_version: 3.2.3
|
118
|
+
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: Walk the stack in a Pry session
|
121
121
|
test_files:
|