Sha256: 5f07bb814d0d753b49c9bbccaddedad9148ef35f1d1922078f6a5b661fc3a74c
Contents?: true
Size: 544 Bytes
Versions: 26
Compression:
Stored size: 544 Bytes
Contents
# frozen_string_literal: true module Nanoc::Int # @private class ActionProvider extend DDPlugin::Plugin def self.for(_site) raise NotImplementedError end def rep_names_for(_item) raise NotImplementedError end def action_sequence_for(_rep) raise NotImplementedError end def need_preprocessing? raise NotImplementedError end def preprocess(_site) raise NotImplementedError end def postprocess(_site, _reps) raise NotImplementedError end end end
Version data entries
26 entries across 26 versions & 1 rubygems