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

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/providers/docker/action/is_build.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/bundler/gems/vagrant-1e28f1ac31e7/plugins/providers/docker/action/is_build.rb