Module: Verbose
- Defined in:
- lib/teuton/utils/verbose.rb
Overview
Define general use methods
Instance Method Summary collapse
Instance Method Details
#verbose(text) ⇒ Object
10 11 12 13 14 |
# File 'lib/teuton/utils/verbose.rb', line 10 def verbose(text) return if Application.instance.quiet? print text end |
#verboseln(text) ⇒ Object
6 7 8 |
# File 'lib/teuton/utils/verbose.rb', line 6 def verboseln(text) verbose(text + "\n") end |