commentbox 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/cbwiz +5 -3
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ed82f2da3f72cd890b2492dc4c7051e9271908054bbf2c85eeb8643c4a74aa9
4
- data.tar.gz: a6efc5eafd7db9724ec59ee65a66491f25cc73c38ae4d8be06e6c69b9b924362
3
+ metadata.gz: 8c9924ff53c559dcf315eb35ecc7587b702a1a7bd561a126910f9b1d51a073b1
4
+ data.tar.gz: aa7434f90f115cecdca5a6b1f1735c82622127ac47343bb052c59f3b7a760373
5
5
  SHA512:
6
- metadata.gz: 8ac919c50876fdb5094dcda206cbf367ce8e6396c5cc8514b79937ef07e602c96485a640f657d8224c944d807f6424adb1297257e8adb151b01692d13d0a27d0
7
- data.tar.gz: 0fee623addaf0ceeab0b2c973b88d89ad886c460b87a1055da2e80bd37d3ed09ebf481ecf8d5b6d24a695505b2bdce3bfd5bdaa5c156aa325f2286b8e387cf6b
6
+ metadata.gz: b38c2d5f76c2554890d9fc309e313d8339ec9d4b150817d275b23ef16d3e50dc5841b9d77d3724048f3f4fc91ceaaa2b313dc52171d6ecda2cdf0554622a7187
7
+ data.tar.gz: d888803e4c6a6a53ca7896d4f3fce2664f7109f5ae877e1bc00858789583ae0e4981ed7cd0e53ddd13a5c6e3c966e09e68f25b15169d8017682efe616e3ec0d2
data/bin/cbwiz CHANGED
@@ -10,6 +10,7 @@ Options:
10
10
  -p, --padding [padding] Padding of comment box
11
11
  -o, --offset [offset] Offset of comment box
12
12
  -w, --stretch [stretch] Stretch of comment box
13
+ -m, --minwidth [minwidth] Minimum width of comment box (like a more absolute stretch)
13
14
  -sl, --spacelines Remove space lines (default true)
14
15
  -h, --help Display this help message
15
16
  )
@@ -44,6 +45,8 @@ ARGV.each do |arg|
44
45
  mode = :offset
45
46
  when '-w', '--stretch'
46
47
  mode = :stretch
48
+ when '-m', '--minwidth', '--min_width', '--min-width'
49
+ mode = :min_width
47
50
  when '-sl', '--spacelines'
48
51
  mode = :spacelines
49
52
  # default is true so if it's mentioned, we implicitly assume false
@@ -58,8 +61,7 @@ ARGV.each do |arg|
58
61
  end
59
62
  end
60
63
  end
61
-
62
-
63
- puts options.to_s
64
+ # finally, unescape newlines in text
65
+ options[:text] = options[:text].gsub('\n', "\n")
64
66
 
65
67
  puts CommentBox.new options
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commentbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonard H. Phelan IV