class FlexValidations::Call::NotRespondMessage

Public Class Methods

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

Public Instance Methods

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