Added project to project linking

This commit is contained in:
alexey
2025-03-09 23:50:10 +03:00
parent aee02beb03
commit 91fa281237
6 changed files with 175 additions and 38 deletions

11
classes/mock.rb Normal file
View File

@@ -0,0 +1,11 @@
class MockManager
attr :path, :error, :last_status, :last_pid
def initialize(path)
@error = nil
unless File.exist? (path)
Dir.mkdir(path)
end
@path = path
end
end