Skip to content
Snippets Groups Projects
Commit 3555206a authored by Alyssa Ross's avatar Alyssa Ross
Browse files

formula: make cache clearing methods, *ahem*, clearer

parent 5baf16f5
No related branches found
No related tags found
No related merge requests found
...@@ -1337,10 +1337,14 @@ class Formula ...@@ -1337,10 +1337,14 @@ class Formula
end end
end end
# Clear caches of .racks and .installed. # Clear cache of .racks
# @private def self.clear_racks_cache
def self.clear_cache
@racks = nil @racks = nil
end
# Clear caches of .racks and .installed.
def self.clear_installed_formulae_cache
clear_racks_cache
@installed = nil @installed = nil
end end
......
...@@ -319,7 +319,7 @@ class Tab < OpenStruct ...@@ -319,7 +319,7 @@ class Tab < OpenStruct
def write def write
# If this is a new installation, the cache of installed formulae # If this is a new installation, the cache of installed formulae
# will no longer be valid. # will no longer be valid.
Formula.clear_cache unless tabfile.exist? Formula.clear_installed_formulae_cache unless tabfile.exist?
CACHE[tabfile] = self CACHE[tabfile] = self
tabfile.atomic_write(to_json) tabfile.atomic_write(to_json)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment