16 lines
274 B
Ruby
16 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
|