Sha256: e59a140d457c7b690f85746cac546e76fa529eb29c1776d7b835c85805d02377
Contents?: true
Size: 308 Bytes
Versions: 42
Compression:
Stored size: 308 Bytes
Contents
module VagrantPlugins module DockerProvider module Action class IsBuild def initialize(app, env) @app = app end def call(env) env[:result] = !!env[:machine].provider_config.build_dir @app.call(env) end end end end end
Version data entries
42 entries across 35 versions & 7 rubygems