Sha256: 9e4e838651f9a3fd270a00e47fcf5077399e3bbe811610254282e450d47c9729
Contents?: true
Size: 754 Bytes
Versions: 2
Compression:
Stored size: 754 Bytes
Contents
# encoding: utf-8 usage 'validate-links [options]' aliases :validate_links, :vlink summary 'validate links in site' be_hidden description " Validates the site’s links. By default, both internal and external links will be checked. " flag :i, :internal, 'validate internal links only' flag :e, :external, 'validate external links only' module Nanoc::CLI::Commands class ValidateLinks < ::Nanoc::CLI::CommandRunner def run warn 'The `validate-links` command is deprecated. Please use the new `check` command instead.' checks = [] checks << 'ilinks' if options[:internal] checks << 'elinks' if options[:external] Nanoc::CLI.run ['check', checks].flatten end end end runner Nanoc::CLI::Commands::ValidateLinks
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nanoc-3.8.0 | lib/nanoc/cli/commands/validate-links.rb |
nanoc-3.7.5 | lib/nanoc/cli/commands/validate-links.rb |