module PuppetLintParamDocs
Public Class Methods
define_selective(&task_block)
click to toggle source
A helper to define a more specific rake task that runs after the usual 'lint' task, but only with param docs checks. It disables the param docs checks in the main lint task.
Allows users to define a more restrictive pattern for param docs checks.
# File lib/puppet-lint-param-docs/tasks.rb, line 8 def self.define_selective(&task_block) RakeTask.new.define_selective(&task_block) end