Module: Verbose
- Included in:
- Case, CaseManager, ExecuteBase
- Defined in:
- lib/teuton/utils/verbose.rb
Instance Method Summary collapse
Instance Method Details
#verbose(text) ⇒ Object
8 9 10 11 12 |
# File 'lib/teuton/utils/verbose.rb', line 8 def verbose(text) return if Project.quiet? print text end |
#verboseln(text) ⇒ Object
4 5 6 |
# File 'lib/teuton/utils/verbose.rb', line 4 def verboseln(text) verbose(text.to_s + "\n") end |