lib/voicemail/matcher.rb in voicemail-1.0.0 vs lib/voicemail/matcher.rb in voicemail-1.1.0
- old
+ new
@@ -1,14 +1,15 @@
+# encoding: utf-8
+# This template exists for the purpose of being overridden. See the README for more information.
+
module Voicemail
class Matcher
def initialize(entered, actual)
@entered = entered.try :to_s
@actual = actual.try :to_s
end
def matches?
- logger.info "input : #{@entered}"
- logger.info "actual: #{@actual}"
@entered == @actual
end
end
end