debian-mirror-gitlab/lib/gitlab/badge/build/metadata.rb
2016-09-13 17:45:13 +05:30

29 lines
629 B
Ruby

module Gitlab
module Badge
module Build
##
# Class that describes build badge metadata
#
class Metadata < Badge::Metadata
def initialize(badge)
@project = badge.project
@ref = badge.ref
end
def title
'build status'
end
def image_url
build_namespace_project_badges_url(@project.namespace,
@project, @ref, format: :svg)
end
def link_url
namespace_project_commits_url(@project.namespace, @project, id: @ref)
end
end
end
end
end