docbrown/app/workers/bust_cache_path_worker.rb

5 lines
105 B
Ruby

class BustCachePathWorker < BustCacheBaseWorker
def perform(path)
CacheBuster.bust(path)
end
end