aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/template/resolver.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2016-12-24 22:08:23 +0900
committerAkira Matsuda <ronnie@dio.jp>2016-12-24 22:16:47 +0900
commitb232c51435c7da271a0b6259124435108016070e (patch)
tree71c8bb3ad90fdabe000ecc25c4609926d4dfb399 /actionview/lib/action_view/template/resolver.rb
parent91fa2b71c3fecb26a1dc7836874478f12e6d7a02 (diff)
downloadrails-b232c51435c7da271a0b6259124435108016070e.tar.gz
rails-b232c51435c7da271a0b6259124435108016070e.tar.bz2
rails-b232c51435c7da271a0b6259124435108016070e.zip
No need to nodoc private methods
Diffstat (limited to 'actionview/lib/action_view/template/resolver.rb')
-rw-r--r--actionview/lib/action_view/template/resolver.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/template/resolver.rb b/actionview/lib/action_view/template/resolver.rb
index ed93ebc027..9da13663d7 100644
--- a/actionview/lib/action_view/template/resolver.rb
+++ b/actionview/lib/action_view/template/resolver.rb
@@ -177,7 +177,7 @@ module ActionView
# always check the cache before hitting the resolver. Otherwise,
# it always hits the resolver but if the key is present, check if the
# resolver is fresher before returning it.
- def cached(key, path_info, details, locals) #:nodoc:
+ def cached(key, path_info, details, locals)
name, prefix, partial = path_info
locals = locals.map(&:to_s).sort!
@@ -191,7 +191,7 @@ module ActionView
end
# Ensures all the resolver information is set in the template.
- def decorate(templates, path_info, details, locals) #:nodoc:
+ def decorate(templates, path_info, details, locals)
cached = nil
templates.each do |t|
t.locals = locals