class

Quartz::VerificationErrors

Inherits Enumerable / Reference / Object

Instance methods

[](attribute)
Source
add(attribute : Symbol, message : String)
Source
add(attribute : Symbol, *errors : String)
Source
clear
Source
each

Must yield this collection's elements to the block.

Source
empty?

Returns true if self does not contain any element.

([] of Int32).empty? # => true
([1]).empty?         # => false
[nil, false].empty?  # => false
  • #present? returns the inverse.
Source
full_messages
Source
include?(attribute : Symbol)
Source
messages
Source
size

Returns the number of elements in the collection.

[1, 2, 3, 4].size # => 4
Source