Sha256: c046b75055a5b0a5b3441154a6705909cbdd3249b3d13a40b54b89276b470121
Contents?: true
Size: 401 Bytes
Versions: 14
Compression:
Stored size: 401 Bytes
Contents
module Vagrant module Notify module Action class CheckProvider def initialize(app, env) @app = app end def call(env) env[:result] = true # Call the next if we have one (but we shouldn't, since this # middleware is built to run with the Call-type middlewares) @app.call env end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems