module EdgeCache module Commentable class Bust def initialize(commentable, username, cache_buster = CacheBuster.new) @commentable = commentable @username = username @cache_buster = cache_buster end def self.call(*args) new(*args).call end def call cache_buster.bust_comment(commentable, username) cache_buster.bust("#{commentable.path}/comments") commentable.index! end private attr_reader :commentable, :username, :cache_buster end end end