debian-mirror-gitlab/lib/gitlab/gitorious_import/repository.rb
2015-09-11 14:41:01 +05:30

35 lines
510 B
Ruby

module Gitlab
module GitoriousImport
Repository = Struct.new(:full_name) do
def id
Digest::SHA1.hexdigest(full_name)
end
def namespace
segments.first
end
def path
segments.last
end
def name
path.titleize
end
def description
""
end
def import_url
"#{GITORIOUS_HOST}/#{full_name}.git"
end
private
def segments
full_name.split('/')
end
end
end
end