Sha256: e840fa17c44ff0c272f451e3e011547d18552b5ba8b5ccfe5bbfc608fa8e1b03

Contents?: true

Size: 1.31 KB

Versions: 7

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

module Jekyll
  module Commands
    class Clean < Command
      class << self
        def init_with_program(prog)
          prog.command(:clean) do |c|
            c.syntax "clean [subcommand]"
            c.description "Clean the site " \
                  "(removes site output and metadata file) without building."

            add_build_options(c)

            c.action do |_, options|
              Jekyll::Commands::Clean.process(options)
            end
          end
        end

        def process(options)
          options = configuration_from_options(options)
          destination = options["destination"]
          metadata_file = File.join(options["source"], ".jekyll-metadata")
          sass_cache = File.join(options["source"], ".sass-cache")

          remove(destination, :checker_func => :directory?)
          remove(metadata_file, :checker_func => :file?)
          remove(sass_cache, :checker_func => :directory?)
        end

        def remove(filename, checker_func: :file?)
          if File.public_send(checker_func, filename)
            Jekyll.logger.info "Cleaner:", "Removing #{filename}..."
            FileUtils.rm_rf(filename)
          else
            Jekyll.logger.info "Cleaner:", "Nothing to do for #{filename}."
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
jekyll-3.6.3 lib/jekyll/commands/clean.rb
jekyll-docs-3.6.2 lib/jekyll/commands/clean.rb
jekyll-docs-3.6.1 lib/jekyll/commands/clean.rb
jekyll-3.6.2 lib/jekyll/commands/clean.rb
jekyll-3.6.1 lib/jekyll/commands/clean.rb
jekyll-3.6.0 lib/jekyll/commands/clean.rb
jekyll-3.6.0.pre.beta1 lib/jekyll/commands/clean.rb