module Firehose

TODO - Spec this thing out. Unfortunately its not tested at all, mostly because the JSON client is more important (and tested). Still, this should be tested, at least used by the specs to test HTTP functionality of the server.

Constants

CODENAME
URI

Default URI for the Firehose server. Consider the port “well-known” and bindable from other apps.

VERSION

Public Class Methods

logger() click to toggle source

Sets up logging

# File lib/firehose/logging.rb, line 5
def self.logger
  @logger ||= Logger.new($stdout)
end
logger=(logger) click to toggle source
# File lib/firehose/logging.rb, line 9
def self.logger=(logger)
  @logger = logger
end