2022-04-25 12:23:55 -05:00

10 lines
308 B
Ruby

module Vagrant
class Machine
class Thin < Machine
def initialize(name, provider_name, provider_cls, provider_config, provider_options, config, data_dir, box, env, vagrantfile, base=false)
@client = VagrantPlugins::CommandServe::Client::Machine.new(name: name)
end
end
end
end