class Kuromi::Runner::Command
Attributes
binary[R]
command[R]
Public Class Methods
new(binary, command)
click to toggle source
# File lib/kuromi/runner/command.rb, line 7 def initialize(binary, command) @binary = binary @command = command end
Public Instance Methods
to_s()
click to toggle source
# File lib/kuromi/runner/command.rb, line 12 def to_s "#{binary} #{command}" end