Sha256: f9b82787260073cac0fc4805dcc3575cdfd7dca33fd9a260d243ffef6de221b4
Contents?: true
Size: 294 Bytes
Versions: 8
Compression:
Stored size: 294 Bytes
Contents
module VagrantPlugins module Vmpooler module Action class IsCreated def initialize(app, env) @app = app end def call(env) env[:result] = env[:machine].state.id == :created @app.call(env) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems