lib/cli.rb in markdown_exec-2.3.0 vs lib/cli.rb in markdown_exec-2.4.0

- old
+ new

@@ -9,10 +9,10 @@ def value_for_cli(value) case value.class.to_s when 'String' Shellwords.escape value when 'FalseClass', 'TrueClass' - value ? '1' : '0' + value ? 't' : 'f' else Shellwords.escape value.to_s end end end