del 0.1.8 → 0.1.9
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 +18 -1
- data/lib/del/cli.rb +5 -0
- data/lib/del/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: 6a36b73d5edd36c449918c844de3fd30f57b0d74a0aa23a0e4839c84835e2210
|
|
4
|
+
data.tar.gz: 5fb7fe0abb535a22ef88bc7300068d73fc5457f877fe09297b0a12e1644c817b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd5537193233a3a5d418ce24e518178e9869547d9209b62a401d5482bc50ef1543bcb13fec767b5a55432e88cad53915825f3f4221639cb0fc2175e1028d4de6
|
|
7
|
+
data.tar.gz: 3d7a2d30b0366cef54911ca8d4c51dd15c42bddb4d5857a3582757d60b6524169d43278ee0399be8ed447a5fd17521263bc5ad39410de4fd41323498864d55c6
|
data/README.md
CHANGED
|
@@ -35,7 +35,24 @@ DEL_ROOMS=1_pidge,2_hunk,3_shiro
|
|
|
35
35
|
|
|
36
36
|
Start the chat server:
|
|
37
37
|
|
|
38
|
-
$ del
|
|
38
|
+
$ del server
|
|
39
|
+
|
|
40
|
+
Start the server with a file containing custom chat routes:
|
|
41
|
+
|
|
42
|
+
$ del server lib/del/examples/routes.rb
|
|
43
|
+
|
|
44
|
+
Start the server with a remote file:
|
|
45
|
+
|
|
46
|
+
$ del server https://gist.githubusercontent.com/mokhan/15882e15908273f7880eaeaa336d12d9/raw/a54db41e7824315b63b3e4e88df5c2f74ce27e30/routes.rb
|
|
47
|
+
|
|
48
|
+
Once the server is started, you may use the client to send messages
|
|
49
|
+
through it.
|
|
50
|
+
|
|
51
|
+
$ del message 1_79@chat.btf.hipchat.com "Hello, World!"
|
|
52
|
+
|
|
53
|
+
See the help for additional information:
|
|
54
|
+
|
|
55
|
+
$ del help
|
|
39
56
|
|
|
40
57
|
## Development
|
|
41
58
|
|
data/lib/del/cli.rb
CHANGED
data/lib/del/version.rb
CHANGED