Sha256: d6b0892cfd70e945f84997067a8edcb541d631c0ad604ac46325901f91c64c48
Contents?: true
Size: 889 Bytes
Versions: 1
Compression:
Stored size: 889 Bytes
Contents
module Ben class UI def warn(message) end def debug(message) end def error(message) end def info(message) end def confirm(message) end # alias to info. def say(*args, &blk) info(*args, &blk) end class Shell < UI attr_writer :shell def initialize(shell) @shell = shell @quiet = false @debug = ENV['DEBUG'] end def debug(msg) @shell.say(msg) if @debug && !@quiet end def info(msg) @shell.say(msg) if !@quiet end def confirm(msg) @shell.say(msg, :green) if !@quiet end def warn(msg) @shell.say(msg, :yellow) end def error(msg) @shell.say(msg, :red) end def be_quiet! @quiet = true end def debug! @debug = true end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ben-0.0.1 | lib/ben/ui.rb |