class FlexValidations::Predicate::NotRespondMessage

Public Class Methods

new(value, method) click to toggle source
# File lib/flex_validations/predicate.rb, line 73
def initialize(value, method)
  @value = value
  @method = method
end

Public Instance Methods

to_s() click to toggle source
# File lib/flex_validations/predicate.rb, line 78
def to_s
  "#{@value.inspect} of #{@value.class} isn't respond to method #{@method}"
end