Class: Somemoji::Commands::BaseCommand
- Inherits:
-
Object
- Object
- Somemoji::Commands::BaseCommand
show all
- Defined in:
- lib/somemoji/commands/base_command.rb
Instance Method Summary
collapse
Constructor Details
#initialize(command_line_arguments) ⇒ BaseCommand
5
6
7
|
# File 'lib/somemoji/commands/base_command.rb', line 5
def initialize(command_line_arguments)
@command_line_arguments = command_line_arguments
end
|
Instance Method Details
#call ⇒ Object
9
10
11
|
# File 'lib/somemoji/commands/base_command.rb', line 9
def call
raise ::NotImplementedError
end
|