lib/nanoc/base/compilation/checksum_store.rb in nanoc-3.7.4 vs lib/nanoc/base/compilation/checksum_store.rb in nanoc-3.7.5

- old
+ new

@@ -1,15 +1,13 @@ # encoding: utf-8 module Nanoc - # Stores checksums for objects in order to be able to detect whether a file # has changed since the last site compilation. # # @api private class ChecksumStore < ::Nanoc::Store - # @option params [Nanoc::Site] site The site where this checksum store # belongs to def initialize(params = {}) super('tmp/checksums', 1) @@ -49,9 +47,7 @@ end def data=(new_data) @checksums = new_data end - end - end