Skip to content

Instantly share code, notes, and snippets.

@Poincare
Created August 5, 2012 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Poincare/3266877 to your computer and use it in GitHub Desktop.
Save Poincare/3266877 to your computer and use it in GitHub Desktop.
require 'socket'
require 'celluloid'
class HTTPServer
include Celluloid
def initialize(port)
@port = port
end
def start
@server = TCPServer.new(@port)
loop {
client = @server.accept
headers = "HTTP/1.1 200 OK\r\nDate: Tue, 14 Dec 2010 10:48:45 GMT\r\nServer: Ruby\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n"
client.puts headers
client.puts "<html></html>"
client.close
}
end
end
hs = HTTPServer.new 3000
hs.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment