commentbox 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/cbwiz +3 -3
- 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: 1ed82f2da3f72cd890b2492dc4c7051e9271908054bbf2c85eeb8643c4a74aa9
|
4
|
+
data.tar.gz: a6efc5eafd7db9724ec59ee65a66491f25cc73c38ae4d8be06e6c69b9b924362
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ac919c50876fdb5094dcda206cbf367ce8e6396c5cc8514b79937ef07e602c96485a640f657d8224c944d807f6424adb1297257e8adb151b01692d13d0a27d0
|
7
|
+
data.tar.gz: 0fee623addaf0ceeab0b2c973b88d89ad886c460b87a1055da2e80bd37d3ed09ebf481ecf8d5b6d24a695505b2bdce3bfd5bdaa5c156aa325f2286b8e387cf6b
|
data/bin/cbwiz
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'commentbox'
|
4
4
|
|
5
|
-
$HELP_MSG = %q(Usage:
|
5
|
+
$HELP_MSG = %q(Usage: cbwiz [options] [text]
|
6
6
|
Options:
|
7
7
|
-t, --text [text] Text to be commented. Optional flag for first argument
|
8
8
|
-a, --align [l1, l2...] Alignment of text: left, center, right
|
@@ -34,8 +34,8 @@ ARGV.each do |arg|
|
|
34
34
|
help_and_exit
|
35
35
|
when '-t', '--text'
|
36
36
|
mode = :text
|
37
|
-
when '-a', '--align'
|
38
|
-
mode = :
|
37
|
+
when '-a', '--align', '--alignment'
|
38
|
+
mode = :alignment
|
39
39
|
when '-s', '--style'
|
40
40
|
mode = :style
|
41
41
|
when '-p', '--padding'
|