vagrant/plugins/pushes/noop/push.rb

10 lines
151 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
2014-10-23 20:02:51 +00:00
puts "pushed"
2014-10-23 02:29:23 +00:00
end
end
end
end