5 lines
105 B
Ruby
5 lines
105 B
Ruby
class BustCachePathWorker < BustCacheBaseWorker
|
|
def perform(path)
|
|
CacheBuster.bust(path)
|
|
end
|
|
end
|