vagrant/plugins/pushes/noop/push.rb

10 lines
151 B
Ruby

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