class Nanoc::Core::OutdatednessReasons::Generic

A generic outdatedness reason. An outdatedness reason is basically a descriptive message that explains why a given object is outdated.

Attributes

message[R]

@return [String] A descriptive message for this outdatedness reason

props[R]

@return [Nanoc::Core::DependencyProps]

Public Class Methods

new(message, props = Nanoc::Core::DependencyProps.new) click to toggle source

@param [String] message The descriptive message for this outdatedness

reason
# File lib/nanoc/core/outdatedness_reasons.rb, line 20
def initialize(message, props = Nanoc::Core::DependencyProps.new)
  @message = message
  @props = props
end