mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-21 00:16:09 +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?
8 lines
160 B
Ruby
Executable file
8 lines
160 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# -*- ruby -*-
|
|
|
|
$:.unshift '../../lib'
|
|
require 'rack'
|
|
require '../testrequest'
|
|
|
|
Rack::Handler::FastCGI.run(Rack::Lint.new(TestRequest.new))
|