Module: Sandbox::Output

Included in:
CLI, CLI, Installer, Installer
Defined in:
lib/sandbox/output.rb

Instance Method Summary collapse

Instance Method Details

#tell(msg) ⇒ Object



4
5
6
# File 'lib/sandbox/output.rb', line 4

def tell(msg)
  tell_unless_quiet(msg)
end

#tell_unless_quiet(msg) ⇒ Object



16
17
18
# File 'lib/sandbox/output.rb', line 16

def tell_unless_quiet(msg)
  puts msg unless Sandbox.quiet?
end

#tell_unless_really_quiet(msg) ⇒ Object



20
21
22
# File 'lib/sandbox/output.rb', line 20

def tell_unless_really_quiet(msg)
  puts msg unless Sandbox.really_quiet?
end

#tell_when_really_verbose(msg) ⇒ Object



12
13
14
# File 'lib/sandbox/output.rb', line 12

def tell_when_really_verbose(msg)
  puts msg if Sandbox.really_verbose?
end

#tell_when_verbose(msg) ⇒ Object



8
9
10
# File 'lib/sandbox/output.rb', line 8

def tell_when_verbose(msg)
  puts msg if Sandbox.verbose?
end