lib/nanoc/base/compilation/rule_memory_store.rb in nanoc-3.7.4 vs lib/nanoc/base/compilation/rule_memory_store.rb in nanoc-3.7.5
- old
+ new
@@ -1,15 +1,13 @@
# 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)
@@ -45,9 +43,7 @@
# @see Nanoc::Store#data=
def data=(new_data)
@rule_memories = new_data
end
-
end
-
end