aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/rendering.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-04 11:26:02 +0200
committerJosé Valim <jose.valim@gmail.com>2011-05-04 11:28:37 +0200
commit6afc900191c8edc6f41966827e1cd03ced3f1b17 (patch)
tree9b1e65ffc67052c455ab5c5b98c90d888abd90a3 /actionpack/lib/abstract_controller/rendering.rb
parentd9c39c3ae9aa9d0f50a4b557781be39e39e5b752 (diff)
downloadrails-6afc900191c8edc6f41966827e1cd03ced3f1b17.tar.gz
rails-6afc900191c8edc6f41966827e1cd03ced3f1b17.tar.bz2
rails-6afc900191c8edc6f41966827e1cd03ced3f1b17.zip
Move prefixes to view paths as they are now a lookup context dependency.
Diffstat (limited to 'actionpack/lib/abstract_controller/rendering.rb')
-rw-r--r--actionpack/lib/abstract_controller/rendering.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb
index 8789168ca7..a5f983a55b 100644
--- a/actionpack/lib/abstract_controller/rendering.rb
+++ b/actionpack/lib/abstract_controller/rendering.rb
@@ -62,20 +62,6 @@ module AbstractController
end
end
end
-
- def parent_prefixes
- @parent_prefixes ||= begin
- parent_controller = superclass
- prefixes = []
-
- until parent_controller.abstract?
- prefixes << parent_controller.controller_path
- parent_controller = parent_controller.superclass
- end
-
- prefixes
- end
- end
end
attr_writer :view_context_class
@@ -135,13 +121,6 @@ module AbstractController
view_renderer.render(view_context, options)
end
- # The prefixes used in render "foo" shortcuts.
- def _prefixes
- @_prefixes ||= begin
- parent_prefixes = self.class.parent_prefixes
- parent_prefixes.dup.unshift(controller_path)
- end
- end
private