Method: Inspec::Rule#only_if
- Defined in:
- lib/inspec/rule.rb
#only_if ⇒ nil
Skip all checks if only_if is false
103 104 105 106 |
# File 'lib/inspec/rule.rb', line 103 def only_if return unless block_given? @__skip_rule ||= !yield end |