Carnivore HTTP

Provides HTTP Carnivore::Source

Usage

HTTP

require 'carnivore'
require 'carnivore-http'

Carnivore.configure do
  source = Carnivore::Source.build(
    :type => :http, :args => {:port => 8080}
  )
end

HTTP with configured end points

require 'carnivore'
require 'carnivore-http'

Carnivore.configure do
  source = Carnivore::Source.build(
    :type => :http_endpoints, :args => {:auto_respond => false}
  )
end.start!

Info