aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-10 23:14:47 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-10 23:14:47 +0000
commit9aca06fbee44479eb8cccc5c19ecd8a85f0e0060 (patch)
tree69a80ec50820bd4e40a1573cb50e9577f8d8dffb /actionpack/lib/action_view/template_handler.rb
parent18344e9b0e667b592c2990c25628738b2b161538 (diff)
downloadrails-9aca06fbee44479eb8cccc5c19ecd8a85f0e0060.tar.gz
rails-9aca06fbee44479eb8cccc5c19ecd8a85f0e0060.tar.bz2
rails-9aca06fbee44479eb8cccc5c19ecd8a85f0e0060.zip
More Action View refactoring. Knock :erb default down a notch. Closes #10455.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8374 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/template_handler.rb')
-rw-r--r--actionpack/lib/action_view/template_handler.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template_handler.rb b/actionpack/lib/action_view/template_handler.rb
index 8b339f595b..b9f4330a23 100644
--- a/actionpack/lib/action_view/template_handler.rb
+++ b/actionpack/lib/action_view/template_handler.rb
@@ -1,5 +1,9 @@
module ActionView
class TemplateHandler
+ def self.line_offset
+ 0
+ end
+
def initialize(view)
@view = view
end