vagrant/plugins/pushes/noop/plugin.rb

23 lines
411 B
Ruby
Raw Normal View History

require "vagrant"
module VagrantPlugins
2014-10-23 02:29:23 +00:00
module NoopDeploy
class Plugin < Vagrant.plugin("2")
2014-10-23 02:29:23 +00:00
name "noop"
description <<-DESC
2014-10-23 02:29:23 +00:00
Literally do nothing
DESC
2014-10-23 02:29:23 +00:00
config(:noop, :push) do
require File.expand_path("../config", __FILE__)
Config
end
2014-10-23 02:29:23 +00:00
push(:noop) do
require File.expand_path("../push", __FILE__)
Push
end
end
end
end