lib/watir/matches.rb in commonwatir-1.6.5 vs lib/watir/matches.rb in commonwatir-1.6.6.rc1

- old
+ new

@@ -1,17 +1,17 @@ -class String - def matches(x) - return self == x - end -end - -class Regexp - def matches(x) - return self.match(x) - end -end - -class Integer - def matches(x) - return self == x - end -end +class String + def matches(x) + return self == x + end +end + +class Regexp + def matches(x) + return self.match(x) + end +end + +class Integer + def matches(x) + return self == x + end +end