Sha256: 4ee5a70332d4664a6641c09178d92f0777b7aae034bd2ec43b60455887eef211
Contents?: true
Size: 366 Bytes
Versions: 23
Compression:
Stored size: 366 Bytes
Contents
module Hyrax module CitationsBehaviors module CommonBehavior def persistent_url(work) "#{Hyrax.config.persistent_hostpath}#{work.id}" end def clean_end_punctuation(text) if text && ([".", ",", ":", ";", "/"].include? text[-1, 1]) return text[0, text.length - 1] end text end end end end
Version data entries
23 entries across 23 versions & 2 rubygems