class Kitchen::Command::Sink

Command to… include the sink.

@author Seth Vargo <sethvargo@gmail.com>

Public Instance Methods

call() click to toggle source

Invoke the command.

# File lib/kitchen/command/sink.rb, line 27
def call
  puts [
    "",
    "                    ___              ",
    "                   ' _ '.            ",
    '                 / /` `\\ \\         ',
    "                 | |   [__]          ",
    "                 | |    {{           ",
    "                 | |    }}           ",
    "              _  | |  _ {{           ",
    "  ___________<_>_| |_<_>}}________   ",
    "      .=======^=(___)=^={{====.      ",
    '     / .----------------}}---. \\    ',
    '    / /                 {{    \\ \\  ',
    '   / /                  }}     \\ \\ ',
    "  (  '========================='  )  ",
    "   '-----------------------------'   ",
    "                                     ", # necessary newline
    "",
  ].map(&:rstrip).join("\n")
end