## Defines the structure for a pod excluding validations. # @name matches the name of the pod name/ the specification filename excluding the extension. class ValidationExcluded attr_accessor :name attr_accessor :excluded_rules def initialize(name, excluding) @name = name @excluded_rules = excluding end def excludes(rule) return true end end