Sha256: 595e5334cf54bb99890435d6848a64a275511303099c00c5c7706e19cf6b42b7
Contents?: true
Size: 735 Bytes
Versions: 29
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Hyrax module CitationsBehaviors module Formatters class BaseFormatter include Hyrax::CitationsBehaviors::CommonBehavior include Hyrax::CitationsBehaviors::NameBehavior attr_reader :view_context def initialize(view_context) @view_context = view_context end end autoload :ApaFormatter, 'hyrax/citations_behaviors/formatters/apa_formatter' autoload :ChicagoFormatter, 'hyrax/citations_behaviors/formatters/chicago_formatter' autoload :MlaFormatter, 'hyrax/citations_behaviors/formatters/mla_formatter' autoload :OpenUrlFormatter, 'hyrax/citations_behaviors/formatters/open_url_formatter' end end end
Version data entries
29 entries across 29 versions & 1 rubygems