BigW Consortium Gitlab

reference_parser.rb 336 Bytes
Newer Older
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