Module: Enruby::Configuration::Mixins::Streams
- Included in:
- Base
- Defined in:
- lib/enruby/configuration/mixins/streams.rb
Instance Attribute Summary collapse
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdin ⇒ Object
Returns the value of attribute stdin.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
Instance Attribute Details
#stderr ⇒ Object
Returns the value of attribute stderr.
7 8 9 |
# File 'lib/enruby/configuration/mixins/streams.rb', line 7 def stderr @stderr end |
#stdin ⇒ Object
Returns the value of attribute stdin.
7 8 9 |
# File 'lib/enruby/configuration/mixins/streams.rb', line 7 def stdin @stdin end |
#stdout ⇒ Object
Returns the value of attribute stdout.
7 8 9 |
# File 'lib/enruby/configuration/mixins/streams.rb', line 7 def stdout @stdout end |
Instance Method Details
#initialize ⇒ Object
9 10 11 12 13 14 |
# File 'lib/enruby/configuration/mixins/streams.rb', line 9 def initialize super @stdin = nil @stdout = $stdout @stderr = $stderr end |