method
ensure_cache_path
ensure_cache_path(path)
private
Hide source
# File activesupport/lib/active_support/cache/file_store.rb, line 55 def ensure_cache_path(path) FileUtils.makedirs(path) unless File.exist?(path) end