Sha256: 25e6f9a294f198b4ac18acf3ed87a1f40360ef8069e5be0da73b991c38ac52ad
Contents?: true
Size: 492 Bytes
Versions: 14
Compression:
Stored size: 492 Bytes
Contents
module Vagrant module LXC module Action class Created def initialize(app, env) @app = app end def call(env) # Set the result to be true if the machine is created. env[:result] = env[:machine].state.id != :not_created # 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