mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-04-27 17:16:41 -04:00
9 lines
151 B
Ruby
9 lines
151 B
Ruby
module VagrantPlugins
|
|
module NoopDeploy
|
|
class Push < Vagrant.plugin("2", :push)
|
|
def push
|
|
puts "pushed"
|
|
end
|
|
end
|
|
end
|
|
end
|