mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-16 12:18:07 +01:00
Joyent hasn't upgraded their gem yet, and for many users this could be a major installation pitfall. Rails is vendored, so why can't it boot? Rack? What's that?
14 lines
373 B
Ruby
14 lines
373 B
Ruby
require 'rack'
|
|
require 'rack/lobster'
|
|
|
|
lobster = Rack::Lobster.new
|
|
|
|
protected_lobster = Rack::Auth::Basic.new(lobster) do |username, password|
|
|
'secret' == password
|
|
end
|
|
|
|
protected_lobster.realm = 'Lobster 2.0'
|
|
|
|
pretty_protected_lobster = Rack::ShowStatus.new(Rack::ShowExceptions.new(protected_lobster))
|
|
|
|
Rack::Handler::WEBrick.run pretty_protected_lobster, :Port => 9292
|
|
|