class Pod::DyValidator::Result

Specialized Result to support subspecs aggregation

Attributes

subspecs[R]

Public Class Methods

new(type, attribute_name, message, public_only = false) click to toggle source
Calls superclass method
# File lib/validator.rb, line 756
def initialize(type, attribute_name, message, public_only = false)
  super(type, attribute_name, message, public_only)
  @subspecs = []
end