Class: Nonnative::HTTPServer
- Defined in:
- lib/nonnative/http_server.rb
Instance Attribute Summary
Attributes inherited from Runner
Instance Method Summary collapse
-
#initialize(service) ⇒ HTTPServer
constructor
A new instance of HTTPServer.
Methods inherited from Server
Methods inherited from Runner
Constructor Details
#initialize(service) ⇒ HTTPServer
Returns a new instance of HTTPServer.
5 6 7 8 9 10 11 |
# File 'lib/nonnative/http_server.rb', line 5 def initialize(service) log = File.open(service.log, 'a') events = Puma::Events.new(log, log) @server = Puma::Server.new(app, events) super service end |