aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/integer/even_odd.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-29 23:12:34 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-29 23:12:34 -0700
commit091965c0fc7384c17cce9e71a80f515b1139d460 (patch)
tree46a38eb4ba7a1743d18d7dfa41b27009f7f925ec /activesupport/lib/active_support/core_ext/integer/even_odd.rb
parentdb892ea77563dadb6fbbd242be78ff87321d0bd1 (diff)
downloadrails-091965c0fc7384c17cce9e71a80f515b1139d460.tar.gz
rails-091965c0fc7384c17cce9e71a80f515b1139d460.tar.bz2
rails-091965c0fc7384c17cce9e71a80f515b1139d460.zip
Prefer behavior check to RUBY_VERSION to catch 1.8 backports
Diffstat (limited to 'activesupport/lib/active_support/core_ext/integer/even_odd.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/integer/even_odd.rb4
1 files changed, 2 insertions, 2 deletions
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 6d005268a3..8f9a97b44c 100644
--- a/activesupport/lib/active_support/core_ext/integer/even_odd.rb
+++ b/activesupport/lib/active_support/core_ext/integer/even_odd.rb
@@ -7,10 +7,10 @@ class Integer
# Is the integer a multiple of 2?
def even?
multiple_of? 2
- end if RUBY_VERSION < '1.9'
+ end unless method_defined?(:even?)
# Is the integer not a multiple of 2?
def odd?
!even?
- end if RUBY_VERSION < '1.9'
+ end unless method_defined?(:odd?)
end