Class: StdLogger::MultiIO
- Inherits:
-
Object
- Object
- StdLogger::MultiIO
- Defined in:
- lib/stdlogger/multi_io.rb
Instance Method Summary collapse
- #close ⇒ Object
-
#initialize(targets) ⇒ MultiIO
constructor
A new instance of MultiIO.
- #write(*args) ⇒ Object
Constructor Details
#initialize(targets) ⇒ MultiIO
Returns a new instance of MultiIO.
3 4 5 |
# File 'lib/stdlogger/multi_io.rb', line 3 def initialize targets @targets = targets end |
Instance Method Details
#close ⇒ Object
11 12 13 |
# File 'lib/stdlogger/multi_io.rb', line 11 def close @targets.each { |t| t.close } end |
#write(*args) ⇒ Object
7 8 9 |
# File 'lib/stdlogger/multi_io.rb', line 7 def write *args @targets.each { |t| t.write(*args) } end |