Class: Cougar::Rack::ErrorStream

Inherits:
Object
  • Object
show all
Defined in:
lib/cougar/rack/error_stream.rb

Instance Method Summary collapse

Instance Method Details

#flushObject



14
15
16
# File 'lib/cougar/rack/error_stream.rb', line 14

def flush
  $stderr.flush
end

#puts(*args) ⇒ Object



6
7
8
# File 'lib/cougar/rack/error_stream.rb', line 6

def puts(*args)
  $stderr.puts(*args)
end

#write(*args) ⇒ Object



10
11
12
# File 'lib/cougar/rack/error_stream.rb', line 10

def write(*args)
  $stderr.write(*args)
end