Class: Kitchen::Command::Sink
Overview
Command to… include the sink.
Instance Method Summary collapse
-
#call ⇒ Object
Invoke the command.
Methods inherited from Base
Methods included from Logging
#banner, #debug, #error, #fatal, #info, #warn
Constructor Details
This class inherits a constructor from Kitchen::Command::Base
Instance Method Details
#call ⇒ Object
Invoke the command.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/kitchen/command/sink.rb', line 27 def call puts [ "", " ___ ", " ' _ '. ", ' / /` `\\ \\ ', " | | [__] ", " | | {{ ", " | | }} ", " _ | | _ {{ ", " ___________<_>_| |_<_>}}________ ", " .=======^=(___)=^={{====. ", ' / .----------------}}---. \\ ', ' / / {{ \\ \\ ', ' / / }} \\ \\ ', " ( '=========================' ) ", " '-----------------------------' ", " ", # necessary newline "", ].map(&:rstrip).join("\n") end |