aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@Yehuda-Katz.local>2009-12-20 14:06:40 -0800
committerYehuda Katz <wycats@Yehuda-Katz.local>2009-12-20 14:06:40 -0800
commit8b4735fbd9d5f6bd0c5d04688cc5edcd9b00ccf0 (patch)
treead5a1ab1fae6aac224c7f4243051acea02e19ce7 /actionpack/lib/action_view.rb
parent2419fae092ec207185f9ed69c2aa1ba1cd53fffe (diff)
downloadrails-8b4735fbd9d5f6bd0c5d04688cc5edcd9b00ccf0.tar.gz
rails-8b4735fbd9d5f6bd0c5d04688cc5edcd9b00ccf0.tar.bz2
rails-8b4735fbd9d5f6bd0c5d04688cc5edcd9b00ccf0.zip
Add active_support/ruby/shim to the default requirements for AP components
Diffstat (limited to 'actionpack/lib/action_view.rb')
-rw-r--r--actionpack/lib/action_view.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb
index c3e42ac0d5..aabe8c4314 100644
--- a/actionpack/lib/action_view.rb
+++ b/actionpack/lib/action_view.rb
@@ -23,7 +23,7 @@
activesupport_path = File.expand_path('../../../activesupport/lib', __FILE__)
$:.unshift(activesupport_path) if File.directory?(activesupport_path) && !$:.include?(activesupport_path)
-require 'active_support'
+require 'active_support/ruby/shim'
require 'active_support/core_ext/class/attribute_accessors'
require 'action_pack'