lib/cap-util/halt.rb in cap-util-1.4.0 vs lib/cap-util/halt.rb in cap-util-1.5.0
- old
+ new
@@ -2,10 +2,10 @@
class Halted < RuntimeError
def backtrace; []; end
end
- def self.halt(msg='halted')
+ def self.halt(msg = 'halted')
raise CapUtil::Halted, color(msg, :bold, :yellow)
end
module Halt