Sha256: f2355550223b57f2519a400d8d6fbbea96521c563d3238c0a921d987c96077b3
Contents?: true
Size: 460 Bytes
Versions: 37
Compression:
Stored size: 460 Bytes
Contents
# frozen_string_literal: true module Nanoc::Int::OutdatednessRules class RulesModified < Nanoc::Int::OutdatednessRule affects_props :compiled_content, :path def apply(obj, outdatedness_checker) seq_old = outdatedness_checker.action_sequence_store[obj] seq_new = outdatedness_checker.action_sequence_for(obj).serialize unless seq_old.eql?(seq_new) Nanoc::Int::OutdatednessReasons::RulesModified end end end end
Version data entries
37 entries across 37 versions & 1 rubygems