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