boojs 0.0.31 → 0.0.32
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 +4 -0
- data/lib/boojs/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03300bd813604403569b07e55a667deaa0c81cb1
|
|
4
|
+
data.tar.gz: d053980dc8d0272bbb8b732f4ead623dc2b0a580
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5613edf7efa2596a34b9d65409dcc867773fb29e3d63903fc14843fad25a01ccd5f0b920adf1ec2bb91ea357cbd68b03afb1ba940c6d23ebbbe893d50ecdb15c
|
|
7
|
+
data.tar.gz: 3cdcd83b4928fe2f92e61b4e3f9ba635359a7a003a570b95506bce365828f6273f69f2ce169a5b5fcd52b60adacc3e7e52231df80ce33c73347df037ea07c6f2
|
data/README.md
CHANGED
|
@@ -76,6 +76,10 @@ You may restart the boojs intsance without deleting local storage via sending `$
|
|
|
76
76
|
it's own line. You may then wait for the reply `$__RESTART_OK__`. At this point, boojs will have restarted with a fresh instance except
|
|
77
77
|
that `localStorage` will still be intact.
|
|
78
78
|
|
|
79
|
+
**You must fully drain the `stdout` pipe of *boojs* before attempting to `$__RESTART__`. If you fail to do so, your commands may execute after
|
|
80
|
+
`$__RESTART__` has executed because `$__RESTART__` is executed asynchronously. You should send `booPing()`, wait for a reply of `pong`, and then
|
|
81
|
+
send the `$__RESTART__` command.
|
|
82
|
+
|
|
79
83
|
## Requirements
|
|
80
84
|
|
|
81
85
|
- Ruby 2.1 or Higher
|
data/lib/boojs/version.rb
CHANGED