Sha256: 79c39e450cb57df6647fcf86ecffe6812e1d3a90609479da4d830758b1fddd49
Contents?: true
Size: 378 Bytes
Versions: 7
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true module Nanoc::Int::Compiler::Stages class Postprocess include Nanoc::Int::ContractsSupport def initialize(action_provider:, site:) @action_provider = action_provider @site = site end contract Nanoc::Int::Compiler => C::Any def run(compiler) @action_provider.postprocess(@site, compiler) end end end
Version data entries
7 entries across 7 versions & 1 rubygems