class Kuromi::Runner::Binary

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
# File lib/kuromi/runner/binary.rb, line 7
def initialize(name)
  @name = name
end

Public Instance Methods

command(com) click to toggle source
# File lib/kuromi/runner/binary.rb, line 11
def command(com)
  Command.new(self, com)
end
to_s() click to toggle source
# File lib/kuromi/runner/binary.rb, line 15
def to_s
  name
end