Files
mock-gui/classes/repomanage.rb

15 lines
192 B
Ruby
Raw Normal View History

2025-03-08 23:57:56 +03:00
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