aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-17 16:03:48 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-17 16:03:48 -0500
commit7359597004a63277851acbc87f0267d3d63e17eb (patch)
treed5e270049641af8bdced9992073546e64c2f2468 /actionpack/lib/action_view/base.rb
parent0eef4e554db9b1af47305f5a8c51c90c15ac6c04 (diff)
downloadrails-7359597004a63277851acbc87f0267d3d63e17eb.tar.gz
rails-7359597004a63277851acbc87f0267d3d63e17eb.tar.bz2
rails-7359597004a63277851acbc87f0267d3d63e17eb.zip
Wrap AssetTagHelper's computed public path cache in a threadsafe store
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 85af73390d..a6872b1a47 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -200,10 +200,6 @@ module ActionView #:nodoc:
end
include CompiledTemplates
- # Cache public asset paths
- cattr_reader :computed_public_paths
- @@computed_public_paths = {}
-
def self.helper_modules #:nodoc:
helpers = []
Dir.entries(File.expand_path("#{File.dirname(__FILE__)}/helpers")).sort.each do |file|