Sha256: 6545d6e436e4d58edfc4a227690403da1e5d8fc75e75a2f9e44d3afb973b5b2d
Contents?: true
Size: 705 Bytes
Versions: 58
Compression:
Stored size: 705 Bytes
Contents
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
58 entries across 58 versions & 2 rubygems