Class: Morpheus::Cli::EchoCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand
Defined in:
lib/morpheus/cli/echo_command.rb

Overview

This is for use in dotfile scripts

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from CliCommand

#build_common_options, #build_option_type_options, #command_name, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_id_list, #print, #print_error, #puts, #puts_error, #raise_command_error, #run_command_for_each_arg, #subcommand_aliases, #subcommand_usage, #subcommands, #usage, #verify_access_token!

Instance Method Details

#handle(args) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/morpheus/cli/echo_command.rb', line 11

def handle(args)
  append_newline = true
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = "Usage: morpheus #{command_name} [<message>]"
    opts.on( '-n', '--nonewline', "do not append a newline to your words" ) do
      append_newline = false
    end
    build_common_options(opts, options, [])
  end
  optparse.parse!(args)
  out = ""
  out << args.join(' ')
  if append_newline
    out << "\n"
  end
  # print out 
  print cyan + out + reset
  return true
end