Class: CfScript::Config::IO
- Inherits:
-
Object
- Object
- CfScript::Config::IO
- Defined in:
- lib/cf_script/config.rb
Instance Attribute Summary collapse
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize ⇒ IO
constructor
A new instance of IO.
Constructor Details
#initialize ⇒ IO
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
#stderr ⇒ Object
Returns the value of attribute stderr.
15 16 17 |
# File 'lib/cf_script/config.rb', line 15 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout.
14 15 16 |
# File 'lib/cf_script/config.rb', line 14 def stdout @stdout end |