Sha256: c4562990cb714ca996109afbee81839fc7fc4cfc530ef1fcaa2af65c5c13014e
Contents?: true
Size: 408 Bytes
Versions: 18
Compression:
Stored size: 408 Bytes
Contents
# frozen_string_literal: true module Nanoc::Int::Compiler::Stages class Postprocess < Nanoc::Int::Compiler::Stage 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
18 entries across 18 versions & 1 rubygems