pry-stack_explorer 0.4.11 → 0.4.12
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 +4 -4
- data/CHANGELOG +3 -0
- data/README.md +5 -3
- data/Rakefile +2 -0
- data/lib/pry-stack_explorer/version.rb +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 466d7cd0c0e7e63ac02490ad6406d5982e34976e785548031f8216fb7f2ac425
|
|
4
|
+
data.tar.gz: 3d33e39825f62326af401e7ef12e49c99c1f38967fa9f16a62232d4beed32c17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd897f24e3c68263b93d86732739bafd008c4eba56620dfa5f866fe88121add00a4fa9a1d60975de916e1a140e30e9c8a13c032ebb6815c27fa75359e2e913e9
|
|
7
|
+
data.tar.gz: f08d59c40c3fe428755982dbda278e4f4f3e1895594b05ae34031c5db6f61c11fb2454ccf721c7a3f4736a703a68cf8975e0f7e6a03939a7cdcbad0e77a867b8
|
data/CHANGELOG
CHANGED
data/README.md
CHANGED
|
@@ -3,7 +3,9 @@ pry-stack_explorer
|
|
|
3
3
|
|
|
4
4
|
_Walk the stack in a Pry session_
|
|
5
5
|
|
|
6
|
-
|
|
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
|
+
---
|
|
7
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.
|
|
@@ -69,8 +71,8 @@ Output from above is `Goodbye` as we changed the `x` local inside the `alpha` (c
|
|
|
69
71
|
Compatible versions
|
|
70
72
|
-------------------
|
|
71
73
|
* v0.5: Ruby 2.6+, Pry 0.13+
|
|
72
|
-
* v0.4.
|
|
73
|
-
* v0.4.9.3:
|
|
74
|
+
* v0.4.11: Ruby 2.5, Pry 0.12+ (branch `works-with-ruby-2-5`)
|
|
75
|
+
* v0.4.9.3: Older versions
|
|
74
76
|
|
|
75
77
|
|
|
76
78
|
License
|
data/Rakefile
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
module PryStackExplorer
|
|
2
|
-
VERSION = '0.4.
|
|
3
|
-
end
|
|
1
|
+
module PryStackExplorer
|
|
2
|
+
VERSION = '0.4.12'
|
|
3
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.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: 2020-
|
|
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
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
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: []
|
|
@@ -99,7 +99,7 @@ homepage: https://github.com/pry/pry-stack_explorer
|
|
|
99
99
|
licenses:
|
|
100
100
|
- MIT
|
|
101
101
|
metadata: {}
|
|
102
|
-
post_install_message:
|
|
102
|
+
post_install_message:
|
|
103
103
|
rdoc_options: []
|
|
104
104
|
require_paths:
|
|
105
105
|
- lib
|
|
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
115
|
version: '0'
|
|
116
116
|
requirements: []
|
|
117
117
|
rubygems_version: 3.1.2
|
|
118
|
-
signing_key:
|
|
118
|
+
signing_key:
|
|
119
119
|
specification_version: 4
|
|
120
120
|
summary: Walk the stack in a Pry session
|
|
121
121
|
test_files:
|