debian-mirror-gitlab/lib/banzai/reference_parser/label_parser.rb
2016-06-16 23:09:34 +05:30

12 lines
182 B
Ruby

module Banzai
module ReferenceParser
class LabelParser < BaseParser
self.reference_type = :label
def references_relation
Label
end
end
end
end