Skip to content

Instantly share code, notes, and snippets.

View Georgy5's full-sized avatar
😶

Karl Keller Georgy5

😶
View GitHub Profile
@Georgy5
Georgy5 / webserver.rb
Created September 7, 2024 16:29
Simple Ruby+Puma "hello world" web app
require 'rack/handler/puma'
class PumaRackApp
def call(env
['200', {'Content-Type => 'text/html'}, ['Hello, World!']]
end
end
Rack::Handler::Puma.run(PumaRackApp.new, Post: 5000)