pry-auto_benching.rb 2.6.0 → 2.6.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 +4 -4
- data/README.md +3 -2
- data/lib/pry-auto_benching/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: 6365868342bab57be092d8885b74f31d3433dc25fd908eb727e4dbeff7415c77
|
4
|
+
data.tar.gz: ad85ee9cf74fbdec6d2a50f7111d22f0fdff324021876fb885589c03bfe3cb3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f603b0686f2dffd9e4e02502f4973eef405e1cd79e51f189944a1283bf7ae248efa57547426734a878fbec3e1ae0d5d5a1aad0c3ac847884ff6fb62600d038f
|
7
|
+
data.tar.gz: 5e9d2022ed4b4496efb2beca265200c57825ee23772e7a26fc3661871866d982353c79505e0a051a5e66308765c0cfba18d06fdac0888b87c05bdcbfbcf27732
|
data/README.md
CHANGED
@@ -65,7 +65,8 @@ Disable auto benchmarking by running `auto-benching disable`:
|
|
65
65
|
|
66
66
|
__3.__
|
67
67
|
|
68
|
-
|
68
|
+
An example showing the prompt being updated with benchmark results.
|
69
|
+
`_pry_.config.auto_benching.target_display` is set to `:prompt` (the default).
|
69
70
|
|
70
71
|
[7] pry(main)> sleep 0.2
|
71
72
|
=> 0
|
@@ -77,7 +78,7 @@ A screenshot, with `_pry_.config.auto_benching.target_display` set to `:prompt`
|
|
77
78
|
|
78
79
|
__4.__
|
79
80
|
|
80
|
-
|
81
|
+
An example with `_pry_.config.auto_benching.target_display` set to `:output`.
|
81
82
|
To switch to this display, run `_pry_.config.auto_benching.target_display = :output`
|
82
83
|
inside the repl or set `Pry.config.auto_benching.target_display = :output` from your
|
83
84
|
`.pryrc` for a permanent change.
|