diff options
author | Xavier Noria <fxn@hashref.com> | 2012-08-02 18:44:25 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-08-02 21:59:22 +0200 |
commit | 5ea6b0df9a36d033f21b52049426257a4637028d (patch) | |
tree | 88208a852071af044c898660e82c3eff2ef3be8b /activesupport | |
parent | 8f58d6e5074a623bed752d5ba38513305f03fae9 (diff) | |
download | rails-5ea6b0df9a36d033f21b52049426257a4637028d.tar.gz rails-5ea6b0df9a36d033f21b52049426257a4637028d.tar.bz2 rails-5ea6b0df9a36d033f21b52049426257a4637028d.zip |
load active_support/core_ext/object/inclusion in active_support/rails
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/rails.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/rails.rb b/activesupport/lib/active_support/rails.rb index 01121910db..857780c80b 100644 --- a/activesupport/lib/active_support/rails.rb +++ b/activesupport/lib/active_support/rails.rb @@ -8,4 +8,8 @@ # but it does not belong to the Rails public interface. It is internal to # Rails and can change anytime. +# blank? and present? require 'active_support/core_ext/object/blank' + +# in? +require 'active_support/core_ext/object/inclusion' |