binding_of_callers 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/binding_of_callers/reveal.rb +1 -1
- data/lib/binding_of_callers/revealed.rb +2 -1
- data/lib/binding_of_callers/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ccb825b2e6aef0a18c6335e827cb8f59b1dd65b9c5c63e6b91f4eee74a9219c
|
4
|
+
data.tar.gz: 5cd06d2244151bda2da052a6a170f24366b01f75f298129523718bed1957cd6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48b7cd786832b8dfeeea6724f64482129907789f3c774e22c7824c15626804e74c107b6c262285b272c3a96f35db5c579dd8c9e9b24145b68d2ef7ea8aa03124
|
7
|
+
data.tar.gz: 4a44996cd79b7b488545cf6806a82f512c445b60a38b8628cfc555e68c774433d19ad4a1a509dcc3bde050c43111873e5a0072925449060c064a1f4013021979
|
data/README.md
CHANGED
@@ -23,6 +23,9 @@ Or install it yourself as:
|
|
23
23
|
```ruby
|
24
24
|
binding.of_callers # => an array of wrapped binding of callers
|
25
25
|
binding.of_callers! # => an array of extended binding of callers
|
26
|
+
|
27
|
+
binding.partial_callers(4) # => get closest four frames
|
28
|
+
binding.partial_callers(-2) # => get frames excluding the bottom two
|
26
29
|
```
|
27
30
|
|
28
31
|
### Inspect and modify a binding
|