Sha256: 6c011503c0c1ce514b3c4350fc1bdcc8ed6ab7f8a40e9b73d80e426608c51929
Contents?: true
Size: 315 Bytes
Versions: 1
Compression:
Stored size: 315 Bytes
Contents
# 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.to_s @actual = actual.to_s end def matches? @entered == @actual end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
voicemail-1.1.1 | lib/voicemail/matcher.rb |