Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reference_parser.rb « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 557bec4316e45fc10856799e54d919f5fb776be7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Banzai
  module ReferenceParser
    # Returns the reference parser class for the given type
    #
    # Example:
    #
    #     Banzai::ReferenceParser['issue']
    #
    # This would return the `Banzai::ReferenceParser::IssueParser` class.
    def self.[](name)
      const_get("#{name.to_s.camelize}Parser")
    end
  end
end