aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-02-01 04:12:01 -0200
committerYehuda Katz <wycats@Yehuda-Katz.local>2010-01-31 22:14:18 -0800
commit1adfb9213576bd4a548a66bb46e2a2272e15e48d (patch)
tree6bd8fdaee3a24042df3cddbe4ae734a5109f7680 /actionpack/lib/action_view/template
parent9987a0073829d4ba91585913967cdebe5cc706e4 (diff)
downloadrails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.tar.gz
rails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.tar.bz2
rails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.zip
Deleted all references to ActionView::SafeBuffer in favor of ActiveSupport::SafeBuffer
Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local>
Diffstat (limited to 'actionpack/lib/action_view/template')
-rw-r--r--actionpack/lib/action_view/template/handlers/erb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/template/handlers/erb.rb b/actionpack/lib/action_view/template/handlers/erb.rb
index 93a4315108..51753aaad3 100644
--- a/actionpack/lib/action_view/template/handlers/erb.rb
+++ b/actionpack/lib/action_view/template/handlers/erb.rb
@@ -6,7 +6,7 @@ module ActionView
module Template::Handlers
class Erubis < ::Erubis::Eruby
def add_preamble(src)
- src << "@output_buffer = ActionView::SafeBuffer.new;"
+ src << "@output_buffer = ActiveSupport::SafeBuffer.new;"
end
def add_text(src, text)