class Nanoc::Int::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

Public Class Methods

new(message) click to toggle source

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

reason
# File lib/nanoc/base/compilation/outdatedness_reasons.rb, line 14
def initialize(message)
  @message = message
end