Sha256: e15d453291bc8a4ea037f75f22d1ee1ae71ff31937bf6cdc9f48dbef90715252

Contents?: true

Size: 1.4 KB

Versions: 14

Compression:

Stored size: 1.4 KB

Contents

module Nanoc::Extra::Checking
  # @api private
  class OutputDirNotFoundError < Nanoc::Int::Errors::Generic
    def initialize(directory_path)
      super("Unable to run check against output directory at “#{directory_path}”: directory does not exist.")
    end
  end

  # @api private
  class Check < Nanoc::Int::Context
    extend Nanoc::Int::PluginRegistry::PluginMethods

    attr_reader :issues

    def self.create(site)
      output_dir = site.config[:output_dir]
      unless File.exist?(output_dir)
        raise Nanoc::Extra::Checking::OutputDirNotFoundError.new(output_dir)
      end
      output_filenames = Dir[output_dir + '/**/*'].select { |f| File.file?(f) }

      # FIXME: ugly
      view_context = site.compiler.create_view_context(Nanoc::Int::DependencyTracker::Null.new)

      context = {
        items: Nanoc::ItemCollectionWithRepsView.new(site.items, view_context),
        layouts: Nanoc::LayoutCollectionView.new(site.layouts, view_context),
        config: Nanoc::ConfigView.new(site.config, view_context),
        output_filenames: output_filenames,
      }

      new(context)
    end

    def initialize(context)
      super(context)

      @issues = Set.new
    end

    def run
      raise NotImplementedError.new('Nanoc::Extra::Checking::Check subclasses must implement #run')
    end

    def add_issue(desc, subject: nil)
      @issues << Issue.new(desc, subject, self.class)
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
nanoc-4.3.7 lib/nanoc/extra/checking/check.rb
nanoc-4.3.6 lib/nanoc/extra/checking/check.rb
nanoc-4.3.5 lib/nanoc/extra/checking/check.rb
nanoc-4.3.4 lib/nanoc/extra/checking/check.rb
nanoc-4.3.3 lib/nanoc/extra/checking/check.rb
nanoc-4.3.2 lib/nanoc/extra/checking/check.rb
nanoc-4.3.1 lib/nanoc/extra/checking/check.rb
nanoc-4.3.0 lib/nanoc/extra/checking/check.rb
nanoc-4.2.4 lib/nanoc/extra/checking/check.rb
nanoc-4.2.3 lib/nanoc/extra/checking/check.rb
nanoc-4.2.2 lib/nanoc/extra/checking/check.rb
nanoc-4.2.1 lib/nanoc/extra/checking/check.rb
nanoc-4.2.0 lib/nanoc/extra/checking/check.rb
nanoc-4.2.0b1 lib/nanoc/extra/checking/check.rb