mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 08:55:35 -05:00
12 lines
244 B
Ruby
12 lines
244 B
Ruby
module VagrantPlugins
|
|
module HostVoid
|
|
module Cap
|
|
class Dummy
|
|
def self.dummy(ui, argument)
|
|
ui.info "Dummy host cap in ruby runtime, sent argument: #{argument}"
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|