Class: CfScript::Config::IO

Inherits:
Object
  • Object
show all
Defined in:
lib/cf_script/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeIO

Returns a new instance of IO.



17
18
19
20
# File 'lib/cf_script/config.rb', line 17

def initialize
  @stdout = $stdout
  @stderr = $stderr
end

Instance Attribute Details

#stderrObject

Returns the value of attribute stderr.



15
16
17
# File 'lib/cf_script/config.rb', line 15

def stderr
  @stderr
end

#stdoutObject

Returns the value of attribute stdout.



14
15
16
# File 'lib/cf_script/config.rb', line 14

def stdout
  @stdout
end