aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2011-04-14 00:40:18 +0700
committerXavier Noria <fxn@hashref.com>2011-04-13 19:52:19 +0200
commit0f8a6ebba39e278b9a4426cdc4f5139484585afd (patch)
tree2b69478aebb2487da0ed95a129550758f8375caf /actionpack/lib/abstract_controller
parenteebb19c954d64760c232cda10263200f32fcf036 (diff)
downloadrails-0f8a6ebba39e278b9a4426cdc4f5139484585afd.tar.gz
rails-0f8a6ebba39e278b9a4426cdc4f5139484585afd.tar.bz2
rails-0f8a6ebba39e278b9a4426cdc4f5139484585afd.zip
Fix missing requires in Action Mailer
This made the isolated test failed on CI server. Signed-off-by: Xavier Noria <fxn@hashref.com>
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r--actionpack/lib/abstract_controller/rendering.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb
index 691310d5d2..ecd0c4fb73 100644
--- a/actionpack/lib/abstract_controller/rendering.rb
+++ b/actionpack/lib/abstract_controller/rendering.rb
@@ -1,5 +1,6 @@
require "abstract_controller/base"
require "action_view"
+require "active_support/core_ext/object/instance_variables"
module AbstractController
class DoubleRenderError < Error