Added project spec seting

This commit is contained in:
alexey
2025-03-08 23:57:56 +03:00
parent e0d169e679
commit aee02beb03
7 changed files with 363 additions and 189 deletions

14
classes/repomanage.rb Normal file
View File

@@ -0,0 +1,14 @@
class RepoManager
attr :path, :error
def initialize(path)
@error = nil
unless File.exist? (path)
Dir.mkdir(path)
end
@path = path
end
def create_repo
end
end