webhook-cli 0.0.1 → 0.0.2
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 +8 -3
- data/lib/webhook/cli/poster.rb +8 -0
- data/lib/webhook/cli/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: d52d1862be1903effbcbb8883467907c8675235b
|
4
|
+
data.tar.gz: 4e60ece90e03eef8612e384af02caa738391d237
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f744730f984ffb3fe895ca6bf88a3730756ece3b10517035d00d7b326a24de23f4a640b2bcb792dc838f0da99649758fab320073dee594a2a07d7f103c17378c
|
7
|
+
data.tar.gz: 56bdacc0a75ccaabfcc370d84dfc0f1ada5c38c4e311da1bcd6c91f18c43e1ab79bf7e05619728032b78979ea45a6f93b705427d5892eed8e0ea9b3feb85f9b8
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
# Webhook::
|
1
|
+
# Webhook::CLI
|
2
2
|
|
3
|
-
|
3
|
+
Webhook::CLIは、コマンドラインからwebhookを実行できるツールです。
|
4
|
+
rubyコード中でも使えます。
|
4
5
|
|
5
6
|
## Installation
|
6
7
|
|
@@ -18,7 +19,11 @@ Or install it yourself as:
|
|
18
19
|
|
19
20
|
## Usage
|
20
21
|
|
21
|
-
|
22
|
+
~~~
|
23
|
+
$ webhook url json-file
|
24
|
+
~~~
|
25
|
+
|
26
|
+
This command posts payload=json-file-content to specified url.
|
22
27
|
|
23
28
|
## Contributing
|
24
29
|
|
data/lib/webhook/cli/poster.rb
CHANGED
data/lib/webhook/cli/version.rb
CHANGED