summaryrefslogtreecommitdiff
path: root/lib/chef/file_cache.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/file_cache.rb')
-rw-r--r--lib/chef/file_cache.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/chef/file_cache.rb b/lib/chef/file_cache.rb
index 9a90048ba6..fea15ba6e8 100644
--- a/lib/chef/file_cache.rb
+++ b/lib/chef/file_cache.rb
@@ -39,7 +39,7 @@ class Chef
#
# === Returns
# true
- def store(path, contents, perm=0640)
+ def store(path, contents, perm = 0640)
validate(
{
:path => path,
@@ -102,7 +102,7 @@ class Chef
#
# === Raises
# Chef::Exceptions::FileNotFound:: If it cannot find the file in the cache
- def load(path, read=true)
+ def load(path, read = true)
validate(
{
:path => path
@@ -201,7 +201,7 @@ class Chef
#
# === Returns
# String:: The fully expanded path
- def create_cache_path(path, create_if_missing=true)
+ def create_cache_path(path, create_if_missing = true)
cache_dir = File.expand_path(File.join(file_cache_path, path))
if create_if_missing
create_path(cache_dir)
@@ -215,7 +215,6 @@ class Chef
def file_cache_path
Chef::Config[:file_cache_path]
end
-
end
end
end