rack.git  about / heads / tags
a modular Ruby webserver interface
blob 0eb243cc6d0a8ea4f8e890a45a7d79eb580b9229 217 bytes (raw)
$ git show no-unicorn:example/protectedlobster.ru	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
# frozen_string_literal: true

require 'rack/lobster'

use Rack::ShowExceptions
use Rack::Auth::Basic, "Lobster 2.0" do |username, password|
  Rack::Utils.secure_compare('secret', password)
end

run Rack::Lobster.new

git clone https://yhbt.net/rack.git