examples/readme/negate in cl-0.1.28 vs examples/readme/negate in cl-1.0.0

- old
+ new

@@ -10,18 +10,33 @@ p notifications? end end Cl.new('owners').run(%w(add --notifications)) -# => true +# Output: +# +# true + Cl.new('owners').run(%w(add --no_notifications)) -# => false +# Output: +# +# false + Cl.new('owners').run(%w(add --no-notifications)) -# => false +# Output: +# +# false + Cl.new('owners').run(%w(add --skip_notifications)) -# => false +# Output: +# +# false + Cl.new('owners').run(%w(add --skip-notifications)) -# => false + +# Output: +# +# false