18 lines
271 B
Ruby
18 lines
271 B
Ruby
module Vagrant
|
|
class Environment
|
|
module Remote
|
|
|
|
def self.prepended(klass)
|
|
klass.class_eval do
|
|
attr_reader :client
|
|
end
|
|
end
|
|
|
|
def initialize(opts={})
|
|
super
|
|
@client = opts[:client]
|
|
end
|
|
end
|
|
end
|
|
end
|