Class Puppet::Network::HTTP::Rack
In: lib/puppet/network/http/rack.rb
Parent: Object

An rack application, for running the Puppet HTTP Server.

Methods

call   new  

Public Class methods

Public Instance methods

The real rack application (which needs to respond to call). The work we need to do, roughly is:

  • Read request (from env) and prepare a response
  • Route the request to the correct handler
  • Return the response (in rack-format) to our caller.

[Validate]