initial commit

This commit is contained in:
David Dollar
2010-05-17 01:36:30 -04:00
commit 2dbd3e6be5
11 changed files with 233 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
require "foreman"
class Foreman::Process
attr_reader :name
attr_reader :command
def initialize(name, command)
@name = name
@command = command
end
end