diff options
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index f6885fa292..61d4bd7ad2 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -522,9 +522,10 @@ module ActionView #:nodoc: method_key = file_name || template render_symbol = @@method_names[method_key] - if @@compile_time[render_symbol] && supports_local_assigns?(render_symbol, local_assigns) + compile_time = @@compile_time[render_symbol] + if compile_time && supports_local_assigns?(render_symbol, local_assigns) if file_name && !@@cache_template_loading - template_changed_since?(file_name, @@compile_time[render_symbol]) + template_changed_since?(file_name, compile_time) end else true @@ -534,8 +535,9 @@ module ActionView #:nodoc: # Method to handle checking a whether a template has changed since last compile; isolated so that templates # not stored on the file system can hook and extend appropriately. def template_changed_since?(file_name, compile_time) - compile_time < File.mtime(file_name) || - (File.symlink?(file_name) && (compile_time < File.lstat(file_name).mtime)) + lstat = File.lstat(file_name) + compile_time < lstat.mtime || + (lstat.symlink? && compile_time < File.stat(file_name).mtime) end # Method to create the source code for a given template. |