2014-01-20 22:27:55 +00:00

19 lines
328 B
Ruby

module Producer
module Core
class Env
attr_reader :input, :output
attr_accessor :target
def initialize(input: $stdin, output: $stdout)
@input = input
@output = output
@target = nil
end
def remote
@remote ||= Remote.new(target)
end
end
end
end