vagrant-cachier-ng/lib/vagrant-cachier/action/ensure_single_cache_root.rb

17 lines
274 B
Ruby

module VagrantPlugins
module Cachier
class Action
class EnsureSingleCacheRoot
def initialize(app, env)
@app = app
end
def call(env)
raise 'Do our work'
@app.call(env)
end
end
end
end
end