7 lines
195 B
Ruby
Executable File
7 lines
195 B
Ruby
Executable File
#!/usr/bin/env rackup
|
|
use Rack::ContentLength
|
|
root = File.expand_path('./algebra', File.dirname(__FILE__))
|
|
app = Rack::Directory.new(root)
|
|
puts "Serving #{root} (see --help for options)"
|
|
run app
|