Sha256: 026e11df142f676a10f74b4d559b5774ae40158fcc96a58142348e7ec9610369
Contents?: true
Size: 326 Bytes
Versions: 11
Compression:
Stored size: 326 Bytes
Contents
# frozen_string_literal: true module Fushin module Models class Model def title raise NotImplementedError, "You must implement #{self.class}##{__method__}" end def to_attachements raise NotImplementedError, "You must implement #{self.class}##{__method__}" end end end end
Version data entries
11 entries across 11 versions & 1 rubygems