Sha256: a6fe88e4b4c18a10b7bdb5bb15198ba061453e7c38aa7170ecc5bd77e6002bd3

Contents?: true

Size: 769 Bytes

Versions: 4

Compression:

Stored size: 769 Bytes

Contents

module Nanoc::Extra::Checking::Checks
  # @api private
  class Stale < ::Nanoc::Extra::Checking::Check
    def run
      require 'set'

      output_filenames.each do |f|
        next if pruner.filename_excluded?(f)
        next if item_rep_paths.include?(f)

        add_issue(
          'file without matching item',
          subject: f)
      end
    end

    protected

    def item_rep_paths
      @item_rep_paths ||=
        Set.new(
          @items
            .flat_map(&:reps)
            .map(&:unwrap)
            .flat_map(&:raw_paths)
            .flat_map(&:values))
    end

    def pruner
      exclude_config = @config.fetch(:prune, {}).fetch(:exclude, [])
      @pruner ||= Nanoc::Extra::Pruner.new(@site, exclude: exclude_config)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nanoc-4.1.6 lib/nanoc/extra/checking/checks/stale.rb
nanoc-4.2.0b1 lib/nanoc/extra/checking/checks/stale.rb
nanoc-4.1.5 lib/nanoc/extra/checking/checks/stale.rb
nanoc-4.1.4 lib/nanoc/extra/checking/checks/stale.rb