Sha256: 90f05b3f79a46205d9a9149e5119e71c4542ff027c0b02866593691c4adf69aa
Contents?: true
Size: 382 Bytes
Versions: 7
Compression:
Stored size: 382 Bytes
Contents
require 'log4r' module VagrantPlugins module ArubaCloud module Action class IsCreated def initialize(app, env) @app = app @logger = Log4r::Logger.new('vagrant_arubacloud::action::is_created') end def call(env) env[:result] = env[:machine].id != nil @app.call(env) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems