Sha256: bad07c8977031e96ec9d956e772c67bf6d210add48a624a540c32f1cf66048c6

Contents?: true

Size: 1.64 KB

Versions: 4

Compression:

Stored size: 1.64 KB

Contents

module Nanoc::Int
  # Module that contains all outdatedness reasons.
  #
  # @api private
  module OutdatednessReasons
    # A generic outdatedness reason. An outdatedness reason is basically a
    # descriptive message that explains why a given object is outdated.
    class Generic
      # @return [String] A descriptive message for this outdatedness reason
      attr_reader :message

      # @param [String] message The descriptive message for this outdatedness
      #   reason
      def initialize(message)
        @message = message
      end
    end

    CodeSnippetsModified = Generic.new(
      'The code snippets have been modified since the last time the site was compiled.',
    )

    ConfigurationModified = Generic.new(
      'The site configuration has been modified since the last time the site was compiled.',
    )

    DependenciesOutdated = Generic.new(
      'This item uses content or attributes that have changed since the last time the site was compiled.',
    )

    NotEnoughData = Generic.new(
      'Not enough data is present to correctly determine whether the item is outdated.',
    )

    NotWritten = Generic.new(
      'This item representation has not yet been written to the output directory (but it does have a path).',
    )

    RulesModified = Generic.new(
      'The rules file has been modified since the last time the site was compiled.',
    )

    ContentModified = Generic.new(
      'The content of this item has been modified since the last time the site was compiled.',
    )

    AttributesModified = Generic.new(
      'The attributes of this item have been modified since the last time the site was compiled.',
    )
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nanoc-4.4.3 lib/nanoc/base/compilation/outdatedness_reasons.rb
nanoc-4.4.2 lib/nanoc/base/compilation/outdatedness_reasons.rb
nanoc-4.4.1 lib/nanoc/base/compilation/outdatedness_reasons.rb
nanoc-4.4.0 lib/nanoc/base/compilation/outdatedness_reasons.rb