Class: Kitchen::Command::Sink

Inherits:
Base
  • Object
show all
Defined in:
lib/kitchen/command/sink.rb

Overview

Command to... include the sink.

Author:

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods included from Logging

#banner, #debug, #error, #fatal, #info, #warn

Constructor Details

This class inherits a constructor from Kitchen::Command::Base

Instance Method Details

#callObject

Invoke the command.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/kitchen/command/sink.rb', line 31

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