Sha256: 4c90d049761d03833f72b667d8239689ac29ecd7ec1864641673024d5169da5c
Contents?: true
Size: 383 Bytes
Versions: 63
Compression:
Stored size: 383 Bytes
Contents
module VagrantPlugins module DockerProvider module Action # This middleware is used with Call to test if we're using a host VM. class HostMachineRequired def initialize(app, env) @app = app end def call(env) env[:result] = env[:machine].provider.host_vm? @app.call(env) end end end end end
Version data entries
63 entries across 56 versions & 8 rubygems