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?
9 lines
193 B
Ruby
Executable file
9 lines
193 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# -*- ruby -*-
|
|
|
|
$: << File.join(File.dirname(__FILE__), "..", "..", "lib")
|
|
|
|
require 'rack'
|
|
require '../testrequest'
|
|
|
|
Rack::Handler::CGI.run(Rack::Lint.new(TestRequest.new))
|