Sha256: ea0bfe9121ed96e06b3995e9e8badc99e45fb175b916e78ba3a2367d25e51963
Contents?: true
Size: 810 Bytes
Versions: 4
Compression:
Stored size: 810 Bytes
Contents
# frozen_string_literal: true module Nanoc::RuleDSL class RuleContext < Nanoc::Core::Context include Nanoc::Core::ContractsSupport contract C::KeywordArgs[ rep: Nanoc::Core::ItemRep, site: Nanoc::Int::Site, view_context: Nanoc::ViewContextForPreCompilation, ] => C::Any def initialize(rep:, site:, view_context:) super({ item: Nanoc::BasicItemView.new(rep.item, view_context), rep: Nanoc::BasicItemRepView.new(rep, view_context), item_rep: Nanoc::BasicItemRepView.new(rep, view_context), items: Nanoc::ItemCollectionWithoutRepsView.new(site.items, view_context), layouts: Nanoc::LayoutCollectionView.new(site.layouts, view_context), config: Nanoc::ConfigView.new(site.config, view_context), }) end end end
Version data entries
4 entries across 4 versions & 1 rubygems