class Bane::Behaviors::Responders::NewlineResponse

Sends a newline character as the only response

Public Instance Methods

serve(io) click to toggle source
# File lib/bane/behaviors/responders/newline_response.rb, line 9
def serve(io)
  io.write "\n"
end