pry-stack_explorer 0.4.9 → 0.4.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: d5074fed6fde8491c0beae0c70381d58baffb16e
4
- data.tar.gz: 66bfea00c907311402536059f1b602c1a4796ada
2
+ SHA256:
3
+ metadata.gz: 466d7cd0c0e7e63ac02490ad6406d5982e34976e785548031f8216fb7f2ac425
4
+ data.tar.gz: 3d33e39825f62326af401e7ef12e49c99c1f38967fa9f16a62232d4beed32c17
5
5
  SHA512:
6
- metadata.gz: d09891d6a1f5238be10bb2a46b19bf36eb220a84f1d64263a2ce764138c1f9f5218f0880a69e5128b3169fd5f7f470c4943eb398536868a0516104556650f464
7
- data.tar.gz: 8cfaefb3b2792ba85bef74de43334e95dea833114b112d3ade149b4d2f18d30b7744f51e669b12dd3dedad7a11061242b4cb443b6fbe9f86ed57b0b2d6bc3b54
6
+ metadata.gz: fd897f24e3c68263b93d86732739bafd008c4eba56620dfa5f866fe88121add00a4fa9a1d60975de916e1a140e30e9c8a13c032ebb6815c27fa75359e2e913e9
7
+ data.tar.gz: f08d59c40c3fe428755982dbda278e4f4f3e1895594b05ae34031c5db6f61c11fb2454ccf721c7a3f4736a703a68cf8975e0f7e6a03939a7cdcbad0e77a867b8
data/.gitignore CHANGED
@@ -5,3 +5,5 @@ Makefile
5
5
  doc/
6
6
  pkg/
7
7
  .yardoc/
8
+ Gemfile.lock
9
+ *.gem
@@ -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
- - 1.9.2
6
- - 1.9.3
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
- recipients:
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.12 (17 August 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 :rubygems
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
- **How to use:**
23
+ ## Usage
24
+ Provides commands available in Pry sessions.
26
25
 
27
- After installing `pry-stack_explorer`, just start Pry as normal (typically via a `binding.pry`), the stack_explorer plugin will be detected and used automatically.
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
- Example: Moving around between frames
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
- Frame number: 0/3
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
- Output from above is `goodbye` as we changed the `x` local inside the `alpha` (caller) stack frame.
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
- Limitations
126
- -------------------------
46
+ Example:
47
+ --------
48
+ Here we run the following ruby script:
49
+ ```Ruby
50
+ require 'pry-stack_explorer'
127
51
 
128
- * First release, so may have teething problems.
129
- * Limited to Rubinius, and MRI 1.9.2+ at this stage.
52
+ def alpha
53
+ x = "hello"
54
+ beta
55
+ puts x
56
+ end
130
57
 
131
- Contact
132
- -------
58
+ def beta
59
+ binding.pry
60
+ end
133
61
 
134
- Problems or questions contact me at [github](http://github.com/banister)
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
- License
138
- -------
67
+ [![asciicast](https://asciinema.org/a/257713.svg)](https://asciinema.org/a/257713)
139
68
 
140
- (The MIT License)
69
+ Output from above is `Goodbye` as we changed the `x` local inside the `alpha` (caller) stack frame.
141
70
 
142
- Copyright (c) 2011 John Mair (banisterfiend)
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
- The above copyright notice and this permission notice shall be
153
- included in all copies or substantial portions of the Software.
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
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
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']
@@ -23,7 +25,7 @@ def apply_spec_defaults(s)
23
25
  s.description = s.summary
24
26
  s.require_path = 'lib'
25
27
  s.add_dependency("binding_of_caller",">= 0.7")
26
- s.add_dependency("pry","~>0.9.11")
28
+ s.add_dependency("pry",">=0.9.11")
27
29
  s.add_development_dependency("bacon","~>1.1.0")
28
30
  s.add_development_dependency('rake', '~> 0.9')
29
31
  s.homepage = "https://github.com/pry/pry-stack_explorer"
@@ -33,12 +35,12 @@ end
33
35
 
34
36
  desc "run pry with plugin enabled"
35
37
  task :pry do
36
- exec("pry -rubygems -I#{direc}/lib/ -r #{direc}/lib/#{PROJECT_NAME}")
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 -rubygems -I#{direc}/lib/ #{direc}/examples/example.rb "
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 -rubygems -a -q"
66
+ sh "bacon -Itest -a -q"
65
67
  end
66
68
 
67
69
  desc "generate gemspec"
@@ -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.commands.before_command("whereami") do |num|
129
- if PryStackExplorer.frame_manager(_pry_) && !internal_binding?(target)
130
- bindings = PryStackExplorer.frame_manager(_pry_).bindings
131
- binding_index = PryStackExplorer.frame_manager(_pry_).binding_index
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(_pry_)
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(_pry_)
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
- frame_index = frame_manager.bindings.index(new_frame)
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#{text.bold("Showing all accessible frames in stack (#{frame_manager.bindings.size} in total):")}\n--\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 = "0.4.9"
3
- end
1
+ module PryStackExplorer
2
+ VERSION = '0.4.12'
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
@@ -1,39 +1,28 @@
1
- # -*- encoding: utf-8 -*-
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 = "0.4.9"
5
+ s.version = PryStackExplorer::VERSION
6
6
 
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
7
+ s.required_ruby_version = ">= 2.0.0"
8
8
  s.authors = ["John Mair (banisterfiend)"]
9
- s.date = "2013-02-16"
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.0.rc.2"
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
- if s.respond_to? :specification_version then
20
- s.specification_version = 4
21
-
22
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
23
- s.add_runtime_dependency(%q<binding_of_caller>, [">= 0.7"])
24
- s.add_runtime_dependency(%q<pry>, ["~> 0.9.11"])
25
- s.add_development_dependency(%q<bacon>, ["~> 1.1.0"])
26
- s.add_development_dependency(%q<rake>, ["~> 0.9"])
27
- else
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
@@ -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.9
4
+ version: 0.4.12
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: 2013-02-16 00:00:00.000000000 Z
11
+ date: 2020-08-17 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.9.11
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.9.11
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: Walk the stack in a Pry session
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: '0'
110
+ version: 2.0.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
- rubyforge_project:
117
- rubygems_version: 2.0.0.rc.2
118
- signing_key:
117
+ rubygems_version: 3.1.2
118
+ signing_key:
119
119
  specification_version: 4
120
120
  summary: Walk the stack in a Pry session
121
121
  test_files: