class VagrantPlugins::CORL::Action::DeleteCache

Public Instance Methods

call(env) click to toggle source
# File lib/core/vagrant/actions/delete_cache.rb, line 7
def call(env)
  super do
    @app.call env
    
    env[:ui].info I18n.t("corl.vagrant.actions.delete_cache.start")
    node.clear_cache
  end
end