diff options
author | Xavier Noria <fxn@hashref.com> | 2009-11-09 21:46:16 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-11-09 22:16:51 +0100 |
commit | 329e7f44417c00a8d6fee337c288a463e9d64346 (patch) | |
tree | 0fb81a154cad7a0315aa046b25d01cbfebef8376 /activesupport/lib/active_support/ruby | |
parent | b6598c683bb8f8ef484f54755cced77a5d6200bb (diff) | |
download | rails-329e7f44417c00a8d6fee337c288a463e9d64346.tar.gz rails-329e7f44417c00a8d6fee337c288a463e9d64346.tar.bz2 rails-329e7f44417c00a8d6fee337c288a463e9d64346.zip |
Integer#even? and Integer#odd? are not needed for Ruby >= 1.8.7
Diffstat (limited to 'activesupport/lib/active_support/ruby')
-rw-r--r-- | activesupport/lib/active_support/ruby/shim.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/ruby/shim.rb b/activesupport/lib/active_support/ruby/shim.rb index 1f47c04826..f811239077 100644 --- a/activesupport/lib/active_support/ruby/shim.rb +++ b/activesupport/lib/active_support/ruby/shim.rb @@ -4,7 +4,6 @@ # Date next_year, next_month # DateTime to_date, to_datetime, xmlschema # Enumerable group_by, each_with_object, none? -# Integer even?, odd? # Process Process.daemon # REXML security fix # String ord @@ -13,7 +12,6 @@ require 'active_support' require 'active_support/core_ext/date/calculations' require 'active_support/core_ext/date_time/conversions' require 'active_support/core_ext/enumerable' -require 'active_support/core_ext/integer/even_odd' require 'active_support/core_ext/process/daemon' require 'active_support/core_ext/string/conversions' require 'active_support/core_ext/rexml' |