class PerseusMatch::CheckFailedError

Attributes

operator[R]
pm[R]
threshold[R]
value[R]

Public Class Methods

new(pm, value, threshold, operator) click to toggle source
    # File lib/perseus_match.rb
187 def initialize(pm, value, threshold, operator)
188   @pm, @value, @threshold, @operator = pm, value, threshold, operator
189 end

Public Instance Methods

to_s() click to toggle source
    # File lib/perseus_match.rb
191 def to_s
192   "FAILED: #{value} #{operator} #{threshold}"
193 end