lib/my.rb in doit-0.3.2 vs lib/my.rb in doit-0.3.6

- old
+ new

@@ -1,9 +1,11 @@ +# frozen_string_literal: true + My = Object.new class << My def verbose(what, txt) - marker = '*'*4 + marker = '*' * 4 arr = txt arr = txt ? txt.split("\n") : '' unless Array === txt if arr.length > 1 puts "#{marker} #{what} #{marker}" puts txt