Sha256: f0a7d1c7c46df14250c0fa425221b15b87a93a2b6e37b5f56d36c601b4bfdd69
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
#!/usr/bin/env ruby $:<< '../lib' << 'lib' require 'goliath' require 'goliath/plugins/latency' # Goliath uses multi-jon, so pick your favorite JSON serializer # require 'json' require 'yajl' class Echo < Goliath::API use Goliath::Rack::Params # parse & merge query and body parameters use Goliath::Rack::DefaultMimeType # cleanup accepted media types use Goliath::Rack::Formatters::JSON # JSON output formatter use Goliath::Rack::Render # auto-negotiate response format use Goliath::Rack::Heartbeat # respond to /status with 200, OK (monitoring, etc) use Goliath::Rack::ValidationError # catch and render validation errors use Goliath::Rack::Validation::RequestMethod, %w(GET POST) # allow GET and POST requests only use Goliath::Rack::Validation::RequiredParam, {:key => 'echo'} # must provide ?echo= query or body param plugin Goliath::Plugin::Latency # output reactor latency every second def process_request logger.info "Processing request" {response: env.params['echo']} end def response(env) [200, {}, process_request] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
goliath-0.9.1 | examples/echo.rb |