Sha256: fac58760a8ecc0e7cecce9feaea49ee3fe889b475bc3f0d6358a05570075729d
Contents?: true
Size: 464 Bytes
Versions: 28
Compression:
Stored size: 464 Bytes
Contents
module Nanoc::Int class ProcessingAction def serialize raise NotImplementedError.new('Nanoc::ProcessingAction subclasses must implement #serialize and #to_s') end def to_s raise NotImplementedError.new('Nanoc::ProcessingAction subclasses must implement #serialize and #to_s') end def inspect format( '<%s %s>', self.class.to_s, serialize[1..-1].map(&:inspect).join(', '), ) end end end
Version data entries
28 entries across 28 versions & 1 rubygems