aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers/rjs.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-01-22 01:46:34 +0000
committerMichael Koziarski <michael@koziarski.com>2008-01-22 01:46:34 +0000
commitc0110a9faa1fc414c960a1c639aa8b121d92ca82 (patch)
tree0e618f0c76ffb3fcb973859977f91d4ee9f7cf6d /actionpack/lib/action_view/template_handlers/rjs.rb
parent91de20d6212b5203587d549ce2d63efcc5996eb0 (diff)
downloadrails-c0110a9faa1fc414c960a1c639aa8b121d92ca82.tar.gz
rails-c0110a9faa1fc414c960a1c639aa8b121d92ca82.tar.bz2
rails-c0110a9faa1fc414c960a1c639aa8b121d92ca82.zip
Refactor template compilation from AV::Base into the template handlers. Closes #10888 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8689 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/template_handlers/rjs.rb')
-rw-r--r--actionpack/lib/action_view/template_handlers/rjs.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/template_handlers/rjs.rb b/actionpack/lib/action_view/template_handlers/rjs.rb
index e4b3d0c2a6..e0f95205de 100644
--- a/actionpack/lib/action_view/template_handlers/rjs.rb
+++ b/actionpack/lib/action_view/template_handlers/rjs.rb
@@ -1,6 +1,8 @@
module ActionView
module TemplateHandlers
class RJS < TemplateHandler
+ include Compilable
+
def self.line_offset
2
end
@@ -10,10 +12,6 @@ module ActionView
"update_page do |page|\n#{template}\nend"
end
- def self.compilable?
- true
- end
-
def cache_fragment(block, name = {}, options = nil) #:nodoc:
@view.fragment_for(block, name, options) do
begin