Method: Deploy::Output#shout
- Defined in:
- lib/deploy/output.rb
#shout(message) ⇒ Object
20 21 22 23 24 25 26 27 28 29 |
# File 'lib/deploy/output.rb', line 20 def shout() = .size if < 77 # lines are always 80 characters stars = '*' * (77 - ) puts(red("+ ") + "#{message} #{red(stars)}") else puts(red('+ ') + ) end end |