From 3d90733e937d11b6905ff11ce006a591ec11b4f4 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Sat, 15 Dec 2007 02:27:11 +0000 Subject: Ruby 1.9 compat: prefer builtin String#starts_ and ends_with? if available [chuyeow] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8397 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/core_ext/integer/even_odd.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'activesupport/lib/active_support/core_ext/integer') diff --git a/activesupport/lib/active_support/core_ext/integer/even_odd.rb b/activesupport/lib/active_support/core_ext/integer/even_odd.rb index 3762308cc3..7ea4cbf2ba 100644 --- a/activesupport/lib/active_support/core_ext/integer/even_odd.rb +++ b/activesupport/lib/active_support/core_ext/integer/even_odd.rb @@ -10,14 +10,14 @@ module ActiveSupport #:nodoc: def multiple_of?(number) self % number == 0 end - + def even? multiple_of? 2 - end - + end if RUBY_VERSION < '1.9' + def odd? !even? - end + end if RUBY_VERSION < '1.9' end end end -- cgit v1.2.3