wfstatus 0.0.2 → 0.0.3
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/bin/wfstatus +2 -1
- data/lib/wfstatus/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: e33523dd18c98e2b5505b813db05980bb5e93ced
|
4
|
+
data.tar.gz: 8f301b756387622c726a24ff181589e1143fd008
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a7b6f285c56145c24f901ceb64076592a82bb9c44f878e7259e4b0275e8f2f60e29e5cd851705a0773c7fc50642a13c383d4cb53db0a12a4932554ed53fe93f
|
7
|
+
data.tar.gz: 253f67b29cbe7c4c31a215834dd019f5c3f9194d687daacb3b0cbaa9ca7bf9434e5c68bea50412ae7ecfc12feb71ae0004b32f0b24be6f480b6a42c9c8b61ddc
|
data/bin/wfstatus
CHANGED
@@ -5,6 +5,7 @@ require 'wfstatus'
|
|
5
5
|
|
6
6
|
include Wfstatus
|
7
7
|
|
8
|
-
|
8
|
+
# Usage: ruby -Ilib ./bin/wfstatus wfstatus.yml
|
9
|
+
abort("Usage: wfstatus wfstatus.yml") unless ARGV.length == 1
|
9
10
|
config = YAML.load_file(ARGV[0])
|
10
11
|
Wfstatus::Wfstatus.process(config)
|
data/lib/wfstatus/version.rb
CHANGED