pry-stack_explorer 0.4.5 → 0.4.6
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.
data/lib/pry-stack_explorer.rb
CHANGED
@@ -126,7 +126,7 @@ Pry.config.commands.import PryStackExplorer::Commands
|
|
126
126
|
# monkey-patch the whereami command to show some frame information,
|
127
127
|
# useful for navigating stack.
|
128
128
|
Pry.config.commands.before_command("whereami") do |num|
|
129
|
-
if PryStackExplorer.frame_manager(_pry_)
|
129
|
+
if PryStackExplorer.frame_manager(_pry_) && !internal_binding?(target)
|
130
130
|
bindings = PryStackExplorer.frame_manager(_pry_).bindings
|
131
131
|
binding_index = PryStackExplorer.frame_manager(_pry_).binding_index
|
132
132
|
|
@@ -242,9 +242,9 @@ module PryStackExplorer
|
|
242
242
|
|
243
243
|
def options(opt)
|
244
244
|
opt.on :v, :verbose, "Include extra information."
|
245
|
-
opt.on :H, :head, "Display the first N stack frames (defaults to 10).", :
|
246
|
-
opt.on :T, :tail, "Display the last N stack frames (defaults to 10).", :
|
247
|
-
opt.on :c, :current, "Display N frames either side of current frame (default to 5).", :
|
245
|
+
opt.on :H, :head, "Display the first N stack frames (defaults to 10).", :optional_argument => true, :as => Integer, :default => 10
|
246
|
+
opt.on :T, :tail, "Display the last N stack frames (defaults to 10).", :optional_argument => true, :as => Integer, :default => 10
|
247
|
+
opt.on :c, :current, "Display N frames either side of current frame (default to 5).", :optional_argument => true, :as => Integer, :default => 5
|
248
248
|
end
|
249
249
|
|
250
250
|
def memoized_info(index, b, verbose)
|
data/pry-stack_explorer.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "pry-stack_explorer"
|
5
|
-
s.version = "0.4.
|
5
|
+
s.version = "0.4.6"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["John Mair (banisterfiend)"]
|
9
|
-
s.date = "2012-
|
9
|
+
s.date = "2012-09-12"
|
10
10
|
s.description = "Walk the stack in a Pry session"
|
11
11
|
s.email = "jrmair@gmail.com"
|
12
12
|
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"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-09-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: binding_of_caller
|