diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-11 13:56:05 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-11 19:00:35 -0300 |
commit | 36dd1857dc097b6fbc65396bfabaa152da9c899f (patch) | |
tree | 3be886c3c090fc05d783d73b2709ec9d94c841e6 /activemodel/lib | |
parent | a00228c1a35578c4bf4d462eec977a50120288da (diff) | |
download | rails-36dd1857dc097b6fbc65396bfabaa152da9c899f.tar.gz rails-36dd1857dc097b6fbc65396bfabaa152da9c899f.tar.bz2 rails-36dd1857dc097b6fbc65396bfabaa152da9c899f.zip |
Remove useless load path modifications
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activemodel/lib/active_model.rb b/activemodel/lib/active_model.rb index 7503fb7929..ded1b752df 100644 --- a/activemodel/lib/active_model.rb +++ b/activemodel/lib/active_model.rb @@ -21,8 +21,6 @@ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #++ -activesupport_path = File.expand_path('../../../activesupport/lib', __FILE__) -$:.unshift(activesupport_path) if File.directory?(activesupport_path) && !$:.include?(activesupport_path) require 'active_support' require 'active_model/version' |