diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-10-11 11:30:22 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-10-11 11:30:22 -0700 |
commit | ee7863eaace9e1680108282cede4736fcc303187 (patch) | |
tree | a8468f86c82eb71f583460871110393e338059ad /actionpack/lib | |
parent | 333e03306461a6b443be8086e40341b4352a7f18 (diff) | |
download | rails-ee7863eaace9e1680108282cede4736fcc303187.tar.gz rails-ee7863eaace9e1680108282cede4736fcc303187.tar.bz2 rails-ee7863eaace9e1680108282cede4736fcc303187.zip |
removing some load path tomfoolery
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb index 7e1e5e2c19..d7292e8324 100644 --- a/actionpack/lib/action_view.rb +++ b/actionpack/lib/action_view.rb @@ -21,9 +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/ruby/shim' require 'active_support/core_ext/class/attribute_accessors' |