class CreateRepo
Public Instance Methods
create(path)
click to toggle source
# File lib/autovrsion/create_repository.rb, line 5 def create(path) repository = Rugged::Repository.init_at(path) puts "Repository created at directory #{path}".cyan end