lib/cnimon_palindrome.rb in cnimon_palindrome-0.1.0 vs lib/cnimon_palindrome.rb in cnimon_palindrome-0.2.0
- old
+ new
@@ -1,16 +1,23 @@
require "cnimon_palindrome/version"
-class String
-
+module CnimonPalindrome
# Returns true for a palindrome, false otherwise.
def palindrome?
processed_content == processed_content.reverse
end
private
# Returns content for palindrome testing.
def processed_content
- self.scan(/[a-z]/i).join.downcase
+ self.to_s.scan(/[a-z\d]/i).join.downcase
end
+end
+
+class String
+ include CnimonPalindrome
+end
+
+class Integer
+ include CnimonPalindrome
end