aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-10-14 09:32:53 +0200
committerJosé Valim <jose.valim@gmail.com>2010-10-14 09:32:53 +0200
commitaa508c9baf031d0bb28e6e8f061d731cdd77ecbd (patch)
tree0bdbaa10f2a756bbe3778c6460bbabc60aae65d5 /actionpack/lib/action_view/template
parent37d78028b235f04b2d3ca5cd88b7e1e0ad218684 (diff)
downloadrails-aa508c9baf031d0bb28e6e8f061d731cdd77ecbd.tar.gz
rails-aa508c9baf031d0bb28e6e8f061d731cdd77ecbd.tar.bz2
rails-aa508c9baf031d0bb28e6e8f061d731cdd77ecbd.zip
SReorganize autoloads slightly and move two files to lib/action_view root.
Diffstat (limited to 'actionpack/lib/action_view/template')
-rw-r--r--actionpack/lib/action_view/template/handler.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/template/handler.rb b/actionpack/lib/action_view/template/handler.rb
index 0a9d299807..636f3ebbad 100644
--- a/actionpack/lib/action_view/template/handler.rb
+++ b/actionpack/lib/action_view/template/handler.rb
@@ -8,7 +8,7 @@ module ActionView
module Compilable
def self.included(base)
ActiveSupport::Deprecation.warn "Including Compilable in your template handler is deprecated. " <<
- "All the API your template handler needs to implement is to respond to #call."
+ "Since Rails 3, all the API your template handler needs to implement is to respond to #call."
base.extend(ClassMethods)
end
@@ -30,7 +30,7 @@ module ActionView
def self.inherited(base)
ActiveSupport::Deprecation.warn "Inheriting from ActionView::Template::Handler is deprecated. " <<
- "All the API your template handler needs to implement is to respond to #call."
+ "Since Rails 3, all the API your template handler needs to implement is to respond to #call."
super
end