Class: TilesetTooling::Commands::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/tileset_tooling/commands.rb

Overview

Basis for all commands

Direct Known Subclasses

InsertBleed

Instance Method Summary collapse

Constructor Details

#initialize(options, args) ⇒ Command

Initializer for command basis



14
15
16
17
18
19
# File 'lib/tileset_tooling/commands.rb', line 14

def initialize(options, args)
  @logger = ::SemanticLogger[self.class.name.split('::').last]
  @cli = ::HighLine.new
  @options = options
  @args = args
end