vagrant/plugins/pushes/noop/push.rb

12 lines
208 B
Ruby
Raw Normal View History

2014-10-23 02:29:23 +00:00
module VagrantPlugins
module NoopDeploy
class Push < Vagrant.plugin("2", :push)
def push
@machine.communicate.tap do |comm|
puts "pushed"
end
end
end
end
end