vagrant/plugins/pushes/noop/config.rb

17 lines
277 B
Ruby
Raw Normal View History

2014-10-23 02:29:23 +00:00
module VagrantPlugins
module NoopDeploy
class Config < Vagrant.plugin("2", :config)
def initialize
end
def finalize!
end
def validate(machine)
errors = _detected_errors
{ "Noop push" => errors }
end
end
end
end