2014-12-08 11:35:10 -08:00

10 lines
151 B
Ruby

module VagrantPlugins
module NoopDeploy
class Push < Vagrant.plugin("2", :push)
def push
puts "pushed"
end
end
end
end