* Create bust_page service and spec * Specify spec with .once * Create bust_tag service and spec * Create bust_event service and spec * Create bust_podcast service and spec
9 lines
135 B
Ruby
9 lines
135 B
Ruby
module EdgeCache
|
|
class BustPodcast < Bust
|
|
def self.call(path)
|
|
return unless path
|
|
|
|
bust("/#{path}")
|
|
end
|
|
end
|
|
end
|