Sha256: 5b4b4851cf2e2e995015ff54175d77649e60522ad5e2473b1a812487158e4717
Contents?: true
Size: 386 Bytes
Versions: 5
Compression:
Stored size: 386 Bytes
Contents
## 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
Version data entries
5 entries across 5 versions & 1 rubygems