class Somemoji::Commands::BaseCommand

Public Class Methods

new(command_line_arguments) click to toggle source

@param command_line_arguments [Somemoji::CommandLineArguments]

# File lib/somemoji/commands/base_command.rb, line 5
def initialize(command_line_arguments)
  @command_line_arguments = command_line_arguments
end

Public Instance Methods

call() click to toggle source
# File lib/somemoji/commands/base_command.rb, line 9
def call
  raise ::NotImplementedError
end

Private Instance Methods

command_line_arguments() click to toggle source

@return [Somemoji::CommandLineArguments]

# File lib/somemoji/commands/base_command.rb, line 16
def command_line_arguments
  @command_line_arguments
end