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

12 lines
208 B
Ruby

module VagrantPlugins
module NoopDeploy
class Push < Vagrant.plugin("2", :push)
def push
@machine.communicate.tap do |comm|
puts "pushed"
end
end
end
end
end