* Refactor caching * Bring back old bust class * Refactor with PR feedback * Remove useless return values
10 lines
178 B
Ruby
10 lines
178 B
Ruby
module EdgeCache
|
|
class BustPodcast
|
|
def self.call(path)
|
|
return unless path
|
|
|
|
cache_bust = EdgeCache::Bust.new
|
|
cache_bust.call("/#{path}")
|
|
end
|
|
end
|
|
end
|