class Nanoc::Core::OutdatednessReasons::AttributesModified

Attributes

attributes[R]

Public Class Methods

new(attributes) click to toggle source
# File lib/nanoc/core/outdatedness_reasons.rb, line 72
def initialize(attributes)
  super(
    'The attributes of this item have been modified since the last time the site was compiled.',
    Nanoc::Core::DependencyProps.new(attributes: true, compiled_content: true),
  )

  @attributes = attributes
end