Class: Hanami::Validations::InlinePredicate Private

Inherits:
Object
  • Object
show all
Defined in:
lib/hanami/validations/inline_predicate.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Inline predicate

Since:

  • 0.6.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, message, &blk) ⇒ Hanami::Validations::InlinePredicate

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return a new instance.

Parameters:

  • name (Symbol)

    inline predicate name

  • message (String)

    optional failure message

  • blk (Proc)

    predicate implementation

Since:

  • 0.6.0



28
29
30
31
32
# File 'lib/hanami/validations/inline_predicate.rb', line 28

def initialize(name, message, &blk)
  @name    = name
  @message = message
  @blk     = blk
end

Instance Attribute Details

#messageObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.6.0



16
17
18
# File 'lib/hanami/validations/inline_predicate.rb', line 16

def message
  @message
end

#nameObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.6.0



12
13
14
# File 'lib/hanami/validations/inline_predicate.rb', line 12

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.6.0



42
43
44
45
# File 'lib/hanami/validations/inline_predicate.rb', line 42

def ==(other)
  self.class == other.class &&
    name == other.name
end

#to_procObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.6.0



36
37
38
# File 'lib/hanami/validations/inline_predicate.rb', line 36

def to_proc
  @blk
end