diff options
| author | Akira Matsuda <ronnie@dio.jp> | 2012-06-26 12:13:58 +0900 | 
|---|---|---|
| committer | Akira Matsuda <ronnie@dio.jp> | 2012-06-26 14:27:44 +0900 | 
| commit | 38f7ebabb9eb365cc176ad1dc329562c1414ff07 (patch) | |
| tree | f6b528722e53b5ed30f1c14ffccee24f2c49dfaa /actionpack/lib | |
| parent | 755d1636107f814c6e0f76e7b3f327b9b4bdcc07 (diff) | |
| download | rails-38f7ebabb9eb365cc176ad1dc329562c1414ff07.tar.gz rails-38f7ebabb9eb365cc176ad1dc329562c1414ff07.tar.bz2 rails-38f7ebabb9eb365cc176ad1dc329562c1414ff07.zip  | |
:update_details method no more exists on @lookup_context
the method has gone in this commit: 119e9e2dafb0cdc5b85613b730333679aef534af
Diffstat (limited to 'actionpack/lib')
| -rw-r--r-- | actionpack/lib/action_view/renderer/abstract_renderer.rb | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/renderer/abstract_renderer.rb b/actionpack/lib/action_view/renderer/abstract_renderer.rb index 72616b7463..e3d8e9d508 100644 --- a/actionpack/lib/action_view/renderer/abstract_renderer.rb +++ b/actionpack/lib/action_view/renderer/abstract_renderer.rb @@ -1,7 +1,6 @@  module ActionView    class AbstractRenderer #:nodoc: -    delegate :find_template, :template_exists?, :with_fallbacks, :update_details, -      :with_layout_format, :formats, :to => :@lookup_context +    delegate :find_template, :template_exists?, :with_fallbacks, :with_layout_format, :formats, :to => :@lookup_context      def initialize(lookup_context)        @lookup_context = lookup_context  | 
