# File lib/sprockets/cache/file_store.rb, line 17 def [](key) pathname = @root.join(key) pathname.exist? ? pathname.open('rb') { |f| Marshal.load(f) } : nil end