class Roby::Interface::CommandArgument
An argument of a {Command}
Attributes
description[R]
@return [Array<String>] the argument description
name[R]
@return [Symbol] the argument name
Public Class Methods
new(name, description)
click to toggle source
# File lib/roby/interface/command_argument.rb, line 10 def initialize(name, description) @name, @description = name.to_sym, Array(description) end