pry-stack_explorer 0.4.9.3 → 0.5.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 +5 -5
- data/README.md +46 -46
- data/lib/pry-stack_explorer/commands.rb +4 -4
- data/lib/pry-stack_explorer/version.rb +1 -1
- data/lib/pry-stack_explorer/when_started_hook.rb +3 -1
- data/lib/pry-stack_explorer.rb +3 -3
- metadata +19 -38
- data/.gemtest +0 -0
- data/.gitignore +0 -7
- data/.travis.yml +0 -29
- data/.yardopts +0 -1
- data/CHANGELOG +0 -0
- data/Gemfile +0 -2
- data/Rakefile +0 -112
- data/examples/example.rb +0 -45
- data/examples/example2.rb +0 -18
- data/examples/example3.rb +0 -46
- data/pry-stack_explorer.gemspec +0 -36
- data/test/helper.rb +0 -87
- data/test/test_commands.rb +0 -358
- data/test/test_frame_manager.rb +0 -65
- data/test/test_stack_explorer.rb +0 -393
- data/tester.rb +0 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8b9a35f3f16a578dfe681562179beaaf5007c4f022510aeebd4e4cfffa167984
|
4
|
+
data.tar.gz: aa1ea9e43daffc284c731be4900ef522b1ef7b8eb49e4eb19aa395e8afce48b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 443cf425db06704c33ad85b5dc79140c3f0318543012067773442cc63a933d62469e9383581609895a66a974de470bb74f822f0468ae392a7596c1465fffcbf8
|
7
|
+
data.tar.gz: 37138108eec94b9f8705c5c2473b7ec92b27bc2224a58940a4fb9ef1fe013f2480940ec1b6c4ea8294fdc0ea431d0998775c3690f36f3d622fba3f89c5a2286b
|
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,68 +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.
|
25
|
+
|
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
|
30
|
+
|
31
|
+
|
32
|
+
## Install
|
33
|
+
|
34
|
+
In Gemfile:
|
35
|
+
```rb
|
36
|
+
gem 'pry-stack_explorer', '~> 0.5.0'
|
37
|
+
```
|
26
38
|
|
27
|
-
|
39
|
+
```
|
40
|
+
gem install pry-stack_explorer
|
41
|
+
```
|
28
42
|
|
29
|
-
* Install the [gem](https://rubygems.org/gems/pry-stack_explorer): `gem install pry-stack_explorer`
|
30
43
|
* 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
44
|
* See the [wiki](https://github.com/pry/pry-stack_explorer/wiki) for in-depth usage information.
|
33
45
|
|
34
|
-
Example:
|
46
|
+
Example:
|
35
47
|
--------
|
48
|
+
Here we run the following ruby script:
|
49
|
+
```Ruby
|
50
|
+
require 'pry-stack_explorer'
|
36
51
|
|
37
|
-
|
52
|
+
def alpha
|
53
|
+
x = "hello"
|
54
|
+
beta
|
55
|
+
puts x
|
56
|
+
end
|
38
57
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
[](https://asciinema.org/a/0KtCL9HB1bP08wNHLfIeOMa8K)
|
58
|
+
def beta
|
59
|
+
binding.pry
|
60
|
+
end
|
43
61
|
|
44
|
-
|
62
|
+
alpha
|
63
|
+
```
|
45
64
|
|
46
|
-
|
47
|
-
-------------------------
|
65
|
+
We wander around the stack a little bit, and modify the state of a frame above the one we `binding.pry`'d at.
|
48
66
|
|
49
|
-
|
50
|
-
* Limited to Rubinius, and MRI 1.9.2+ at this stage.
|
67
|
+
[](https://asciinema.org/a/257713)
|
51
68
|
|
52
|
-
|
53
|
-
-------
|
69
|
+
Output from above is `Goodbye` as we changed the `x` local inside the `alpha` (caller) stack frame.
|
54
70
|
|
55
|
-
|
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
|
56
76
|
|
57
77
|
|
58
78
|
License
|
59
79
|
-------
|
80
|
+
Released under the [MIT License](https://github.com/pry/pry-stack_explorer/blob/master/LICENSE) by John Mair (banisterfiend) and contributors
|
60
81
|
|
61
|
-
|
62
|
-
|
63
|
-
Copyright (c) 2011 John Mair (banisterfiend)
|
64
|
-
|
65
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
66
|
-
a copy of this software and associated documentation files (the
|
67
|
-
'Software'), to deal in the Software without restriction, including
|
68
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
69
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
70
|
-
permit persons to whom the Software is furnished to do so, subject to
|
71
|
-
the following conditions:
|
72
|
-
|
73
|
-
The above copyright notice and this permission notice shall be
|
74
|
-
included in all copies or substantial portions of the Software.
|
75
|
-
|
76
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
77
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
78
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
79
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
80
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
81
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
82
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
82
|
+
Contributions to this gem are released under the same license.
|
@@ -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
|
@@ -55,7 +55,7 @@ module PryStackExplorer
|
|
55
55
|
sig = meth_obj ? "<#{signature_with_owner(meth_obj)}>" : ""
|
56
56
|
|
57
57
|
self_clipped = "#{Pry.view_clip(b_self)}"
|
58
|
-
path =
|
58
|
+
path = '@ ' + b.source_location.join(':')
|
59
59
|
|
60
60
|
if !verbose
|
61
61
|
"#{type} #{desc} #{sig}"
|
@@ -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|
|
@@ -47,6 +47,8 @@ module PryStackExplorer
|
|
47
47
|
# remove internal frames related to setting up the session
|
48
48
|
def remove_internal_frames(bindings)
|
49
49
|
start_frames = internal_frames_with_indices(bindings)
|
50
|
+
return bindings if start_frames.empty?
|
51
|
+
|
50
52
|
start_frame_index = start_frames.first.last
|
51
53
|
|
52
54
|
if start_frames.size >= 2
|
@@ -60,7 +62,7 @@ module PryStackExplorer
|
|
60
62
|
|
61
63
|
# remove pry-nav / pry-debugger / pry-byebug frames
|
62
64
|
def remove_debugger_frames(bindings)
|
63
|
-
bindings.drop_while { |b| b.
|
65
|
+
bindings.drop_while { |b| b.source_location[0] =~ /pry-(?:nav|debugger|byebug)/ }
|
64
66
|
end
|
65
67
|
|
66
68
|
# binding.pry frame
|
data/lib/pry-stack_explorer.rb
CHANGED
@@ -127,9 +127,9 @@ Pry.config.commands.import PryStackExplorer::Commands
|
|
127
127
|
# monkey-patch the whereami command to show some frame information,
|
128
128
|
# useful for navigating stack.
|
129
129
|
Pry.config.hooks.add_hook(:before_whereami, :stack_explorer) do
|
130
|
-
if PryStackExplorer.frame_manager(
|
131
|
-
bindings = PryStackExplorer.frame_manager(
|
132
|
-
binding_index = PryStackExplorer.frame_manager(
|
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
|
133
133
|
|
134
134
|
output.puts "\n"
|
135
135
|
output.puts "#{Pry::Helpers::Text.bold('Frame number:')} #{binding_index}/#{bindings.size - 1}"
|
metadata
CHANGED
@@ -1,57 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pry-stack_explorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Mair (banisterfiend)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-22 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
|
-
name:
|
42
|
+
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: '3.9'
|
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
|
-
version:
|
54
|
+
version: '3.9'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,37 +66,23 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0.9'
|
69
|
-
description:
|
70
|
-
email:
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- jrmair@gmail.com
|
71
72
|
executables: []
|
72
73
|
extensions: []
|
73
74
|
extra_rdoc_files: []
|
74
75
|
files:
|
75
|
-
- ".gemtest"
|
76
|
-
- ".gitignore"
|
77
|
-
- ".travis.yml"
|
78
|
-
- ".yardopts"
|
79
|
-
- CHANGELOG
|
80
|
-
- Gemfile
|
81
76
|
- LICENSE
|
82
77
|
- README.md
|
83
|
-
- Rakefile
|
84
|
-
- examples/example.rb
|
85
|
-
- examples/example2.rb
|
86
|
-
- examples/example3.rb
|
87
78
|
- lib/pry-stack_explorer.rb
|
88
79
|
- lib/pry-stack_explorer/commands.rb
|
89
80
|
- lib/pry-stack_explorer/frame_manager.rb
|
90
81
|
- lib/pry-stack_explorer/version.rb
|
91
82
|
- lib/pry-stack_explorer/when_started_hook.rb
|
92
|
-
- pry-stack_explorer.gemspec
|
93
|
-
- test/helper.rb
|
94
|
-
- test/test_commands.rb
|
95
|
-
- test/test_frame_manager.rb
|
96
|
-
- test/test_stack_explorer.rb
|
97
|
-
- tester.rb
|
98
83
|
homepage: https://github.com/pry/pry-stack_explorer
|
99
|
-
licenses:
|
84
|
+
licenses:
|
85
|
+
- MIT
|
100
86
|
metadata: {}
|
101
87
|
post_install_message:
|
102
88
|
rdoc_options: []
|
@@ -106,20 +92,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
92
|
requirements:
|
107
93
|
- - ">="
|
108
94
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
95
|
+
version: 2.6.0
|
110
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
97
|
requirements:
|
112
98
|
- - ">="
|
113
99
|
- !ruby/object:Gem::Version
|
114
100
|
version: '0'
|
115
101
|
requirements: []
|
116
|
-
|
117
|
-
rubygems_version: 2.6.13
|
102
|
+
rubygems_version: 3.0.3
|
118
103
|
signing_key:
|
119
104
|
specification_version: 4
|
120
105
|
summary: Walk the stack in a Pry session
|
121
|
-
test_files:
|
122
|
-
- test/helper.rb
|
123
|
-
- test/test_commands.rb
|
124
|
-
- test/test_frame_manager.rb
|
125
|
-
- test/test_stack_explorer.rb
|
106
|
+
test_files: []
|
data/.gemtest
DELETED
File without changes
|
data/.gitignore
DELETED
data/.travis.yml
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
script:
|
2
|
-
rake test --trace
|
3
|
-
|
4
|
-
before_install:
|
5
|
-
- gem update --system
|
6
|
-
|
7
|
-
rvm:
|
8
|
-
- 1.9.3
|
9
|
-
- 2.0
|
10
|
-
- 2.1.10
|
11
|
-
- 2.2.9
|
12
|
-
- 2.3.6
|
13
|
-
- 2.4.3
|
14
|
-
- 2.5.0
|
15
|
-
- ruby-head
|
16
|
-
|
17
|
-
matrix:
|
18
|
-
allow_failures:
|
19
|
-
- rmv: ruby-head
|
20
|
-
fast_finish: true
|
21
|
-
|
22
|
-
notifications:
|
23
|
-
irc: "irc.freenode.org#pry"
|
24
|
-
recipients:
|
25
|
-
- jrmair@gmail.com
|
26
|
-
|
27
|
-
branches:
|
28
|
-
only:
|
29
|
-
- master
|
data/.yardopts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
--markup markdown
|
data/CHANGELOG
DELETED
File without changes
|
data/Gemfile
DELETED
data/Rakefile
DELETED
@@ -1,112 +0,0 @@
|
|
1
|
-
$:.unshift 'lib'
|
2
|
-
|
3
|
-
dlext = RbConfig::CONFIG['DLEXT']
|
4
|
-
direc = File.dirname(__FILE__)
|
5
|
-
|
6
|
-
PROJECT_NAME = "pry-stack_explorer"
|
7
|
-
|
8
|
-
require 'rake/clean'
|
9
|
-
require 'rubygems/package_task'
|
10
|
-
require "#{PROJECT_NAME}/version"
|
11
|
-
|
12
|
-
CLOBBER.include("**/*~", "**/*#*", "**/*.log")
|
13
|
-
CLEAN.include("**/*#*", "**/*#*.*", "**/*_flymake*.*", "**/*_flymake",
|
14
|
-
"**/*.rbc", "**/.#*.*")
|
15
|
-
|
16
|
-
def apply_spec_defaults(s)
|
17
|
-
s.name = PROJECT_NAME
|
18
|
-
s.summary = "Walk the stack in a Pry session"
|
19
|
-
s.version = PryStackExplorer::VERSION
|
20
|
-
s.date = Time.now.strftime '%Y-%m-%d'
|
21
|
-
s.author = "John Mair (banisterfiend)"
|
22
|
-
s.email = 'jrmair@gmail.com'
|
23
|
-
s.description = s.summary
|
24
|
-
s.require_path = 'lib'
|
25
|
-
s.add_dependency("binding_of_caller",">= 0.7")
|
26
|
-
s.add_dependency("pry",">=0.9.11")
|
27
|
-
s.add_development_dependency("bacon","~>1.1.0")
|
28
|
-
s.add_development_dependency('rake', '~> 0.9')
|
29
|
-
s.homepage = "https://github.com/pry/pry-stack_explorer"
|
30
|
-
s.files = `git ls-files`.split("\n")
|
31
|
-
s.test_files = `git ls-files -- test/*`.split("\n")
|
32
|
-
end
|
33
|
-
|
34
|
-
desc "run pry with plugin enabled"
|
35
|
-
task :pry do
|
36
|
-
exec("pry -rubygems -I#{direc}/lib/ -r #{direc}/lib/#{PROJECT_NAME}")
|
37
|
-
end
|
38
|
-
|
39
|
-
desc "Run example"
|
40
|
-
task :example do
|
41
|
-
sh "ruby -rubygems -I#{direc}/lib/ #{direc}/examples/example.rb "
|
42
|
-
end
|
43
|
-
|
44
|
-
desc "Run example2"
|
45
|
-
task :example2 do
|
46
|
-
sh "ruby -I#{direc}/lib/ #{direc}/examples/example2.rb "
|
47
|
-
end
|
48
|
-
|
49
|
-
desc "Run example3"
|
50
|
-
task :example3 do
|
51
|
-
sh "ruby -I#{direc}/lib/ #{direc}/examples/example3.rb "
|
52
|
-
end
|
53
|
-
|
54
|
-
desc "Show version"
|
55
|
-
task :version do
|
56
|
-
puts "PryStackExplorer version: #{PryStackExplorer::VERSION}"
|
57
|
-
end
|
58
|
-
|
59
|
-
desc "run tests"
|
60
|
-
task :default => :test
|
61
|
-
|
62
|
-
desc "run tests"
|
63
|
-
task :test do
|
64
|
-
sh "bacon -Itest -rubygems -a -q"
|
65
|
-
end
|
66
|
-
|
67
|
-
desc "generate gemspec"
|
68
|
-
task :gemspec => "ruby:gemspec"
|
69
|
-
|
70
|
-
namespace :ruby do
|
71
|
-
spec = Gem::Specification.new do |s|
|
72
|
-
apply_spec_defaults(s)
|
73
|
-
s.platform = Gem::Platform::RUBY
|
74
|
-
end
|
75
|
-
|
76
|
-
Gem::PackageTask.new(spec) do |pkg|
|
77
|
-
pkg.need_zip = false
|
78
|
-
pkg.need_tar = false
|
79
|
-
end
|
80
|
-
|
81
|
-
desc "Generate gemspec file"
|
82
|
-
task :gemspec do
|
83
|
-
File.open("#{spec.name}.gemspec", "w") do |f|
|
84
|
-
f << spec.to_ruby
|
85
|
-
end
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
desc "build all platform gems at once"
|
90
|
-
task :gems => [:clean, :rmgems, :gemspec, "ruby:gem"]
|
91
|
-
|
92
|
-
desc "remove all platform gems"
|
93
|
-
task :rmgems => ["ruby:clobber_package"]
|
94
|
-
|
95
|
-
desc "reinstall gem"
|
96
|
-
task :reinstall => :gems do
|
97
|
-
sh "gem uninstall pry-stack_explorer" rescue nil
|
98
|
-
sh "gem install -l #{direc}/pkg/#{PROJECT_NAME}-#{PryStackExplorer::VERSION}.gem"
|
99
|
-
end
|
100
|
-
|
101
|
-
task :install => :reinstall
|
102
|
-
|
103
|
-
desc "build and push latest gems"
|
104
|
-
task :pushgems => :gems do
|
105
|
-
chdir("#{File.dirname(__FILE__)}/pkg") do
|
106
|
-
Dir["*.gem"].each do |gemfile|
|
107
|
-
sh "gem push #{gemfile}"
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|
111
|
-
|
112
|
-
task :pushgem => :pushgems
|
data/examples/example.rb
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
unless Object.const_defined? :PryStackExplorer
|
2
|
-
$:.unshift File.expand_path '../../lib', __FILE__
|
3
|
-
require 'pry'
|
4
|
-
end
|
5
|
-
|
6
|
-
require 'pry-stack_explorer'
|
7
|
-
|
8
|
-
def alphabet(y)
|
9
|
-
x = 20
|
10
|
-
b
|
11
|
-
end
|
12
|
-
|
13
|
-
def b
|
14
|
-
x = 30
|
15
|
-
proc {
|
16
|
-
c
|
17
|
-
}.call
|
18
|
-
end
|
19
|
-
|
20
|
-
def c
|
21
|
-
u = 50
|
22
|
-
binding.pry
|
23
|
-
end
|
24
|
-
|
25
|
-
# hello
|
26
|
-
def beta
|
27
|
-
gamma
|
28
|
-
end
|
29
|
-
|
30
|
-
def gamma
|
31
|
-
zeta
|
32
|
-
end
|
33
|
-
|
34
|
-
def zeta
|
35
|
-
vitamin = 100
|
36
|
-
binding.pry
|
37
|
-
end
|
38
|
-
#
|
39
|
-
|
40
|
-
proc {
|
41
|
-
class J
|
42
|
-
alphabet(22)
|
43
|
-
end
|
44
|
-
}.call
|
45
|
-
|
data/examples/example2.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
unless Object.const_defined? :PryStackExplorer
|
2
|
-
$:.unshift File.expand_path '../../lib', __FILE__
|
3
|
-
require 'pry'
|
4
|
-
end
|
5
|
-
|
6
|
-
require 'pry-stack_explorer'
|
7
|
-
|
8
|
-
def alpha
|
9
|
-
x = "hello"
|
10
|
-
beta
|
11
|
-
puts x
|
12
|
-
end
|
13
|
-
|
14
|
-
def beta
|
15
|
-
binding.pry
|
16
|
-
end
|
17
|
-
|
18
|
-
alpha
|
data/examples/example3.rb
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
unless Object.const_defined? :PryStackExplorer
|
2
|
-
$:.unshift File.expand_path '../../lib', __FILE__
|
3
|
-
require 'pry'
|
4
|
-
end
|
5
|
-
|
6
|
-
require 'pry-stack_explorer'
|
7
|
-
|
8
|
-
def b
|
9
|
-
x = 30
|
10
|
-
proc {
|
11
|
-
c
|
12
|
-
}.call
|
13
|
-
end
|
14
|
-
|
15
|
-
def c
|
16
|
-
u = 50
|
17
|
-
V.new.beta
|
18
|
-
end
|
19
|
-
|
20
|
-
# hello
|
21
|
-
class V
|
22
|
-
def beta
|
23
|
-
gamma
|
24
|
-
end
|
25
|
-
|
26
|
-
def gamma
|
27
|
-
zeta
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
def zeta
|
32
|
-
vitamin = 100
|
33
|
-
binding.pry
|
34
|
-
end
|
35
|
-
#
|
36
|
-
|
37
|
-
proc {
|
38
|
-
class J
|
39
|
-
def alphabet(y)
|
40
|
-
x = 20
|
41
|
-
b
|
42
|
-
end
|
43
|
-
end
|
44
|
-
}.call
|
45
|
-
|
46
|
-
J.new.alphabet(122)
|
data/pry-stack_explorer.gemspec
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
Gem::Specification.new do |s|
|
2
|
-
s.name = "pry-stack_explorer"
|
3
|
-
s.version = "0.4.9.3"
|
4
|
-
|
5
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
6
|
-
s.authors = ["John Mair (banisterfiend)"]
|
7
|
-
s.date = Time.now.strftime('%Y-%m-%d')
|
8
|
-
s.description = "Walk the stack in a Pry session"
|
9
|
-
s.email = "jrmair@gmail.com"
|
10
|
-
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"]
|
11
|
-
s.homepage = "https://github.com/pry/pry-stack_explorer"
|
12
|
-
s.require_paths = ["lib"]
|
13
|
-
s.summary = "Walk the stack in a Pry session"
|
14
|
-
s.test_files = ["test/helper.rb", "test/test_commands.rb", "test/test_frame_manager.rb", "test/test_stack_explorer.rb"]
|
15
|
-
|
16
|
-
if s.respond_to? :specification_version then
|
17
|
-
s.specification_version = 4
|
18
|
-
|
19
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
20
|
-
s.add_runtime_dependency(%q<binding_of_caller>, [">= 0.7"])
|
21
|
-
s.add_runtime_dependency(%q<pry>, [">= 0.9.11"])
|
22
|
-
s.add_development_dependency(%q<bacon>, ["~> 1.1.0"])
|
23
|
-
s.add_development_dependency(%q<rake>, ["~> 0.9"])
|
24
|
-
else
|
25
|
-
s.add_dependency(%q<binding_of_caller>, [">= 0.7"])
|
26
|
-
s.add_dependency(%q<pry>, [">= 0.9.11"])
|
27
|
-
s.add_dependency(%q<bacon>, ["~> 1.1.0"])
|
28
|
-
s.add_dependency(%q<rake>, ["~> 0.9"])
|
29
|
-
end
|
30
|
-
else
|
31
|
-
s.add_dependency(%q<binding_of_caller>, [">= 0.7"])
|
32
|
-
s.add_dependency(%q<pry>, [">= 0.9.11"])
|
33
|
-
s.add_dependency(%q<bacon>, ["~> 1.1.0"])
|
34
|
-
s.add_dependency(%q<rake>, ["~> 0.9"])
|
35
|
-
end
|
36
|
-
end
|