class ECSUtil::Command

Attributes

action[R]
args[R]
config[R]

Public Class Methods

new(config, action = nil, args = []) click to toggle source
# File lib/ecsutil/command.rb, line 18
def initialize(config, action = nil, args = [])
  @config = config
  @action = action
  @args   = args
end