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

12 lines
188 B
Ruby

module Banzai
module ReferenceParser
class SnippetParser < BaseParser
self.reference_type = :snippet
def references_relation
Snippet
end
end
end
end