Sha256: aaca628139ffd6ead2e4ef63db9863036e4aeeea0c60ced91edf5272fcc7ab46

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

# encoding: utf-8

module Nanoc
  # Stores rule memories for objects that can be run through a rule (item
  # representations and layouts).
  #
  # @api private
  class RuleMemoryStore < ::Nanoc::Store
    # @option params [Nanoc::Site] site The site where this rule memory store
    #   belongs to
    def initialize(params = {})
      super('tmp/rule_memory', 1)

      @site = params[:site] if params.key?(:site)

      @rule_memories = {}
    end

    # @param [Nanoc::ItemRep, Nanoc::Layout] obj The item representation or
    #   the layout to get the rule memory for
    #
    # @return [Array] The rule memory for the given object
    def [](obj)
      @rule_memories[obj.reference]
    end

    # @param [Nanoc::ItemRep, Nanoc::Layout] obj The item representation or
    #   the layout to set the rule memory for
    #
    # @param [Array] rule_memory The new rule memory to be stored
    #
    # @return [void]
    def []=(obj, rule_memory)
      @rule_memories[obj.reference] = rule_memory
    end

    protected

    # @see Nanoc::Store#data
    def data
      @rule_memories
    end

    # @see Nanoc::Store#data=
    def data=(new_data)
      @rule_memories = new_data
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nanoc-3.8.0 lib/nanoc/base/compilation/rule_memory_store.rb
nanoc-3.7.5 lib/nanoc/base/compilation/rule_memory_store.rb