Files
foreman/lib/foreman/process.rb
2010-06-22 16:28:08 -04:00

15 lines
196 B
Ruby

require "foreman"
class Foreman::Process
attr_reader :name
attr_reader :command
attr_accessor :color
def initialize(name, command)
@name = name
@command = command
end
end