I'm on Ubuntu 10.10/Ruby 1.9.2
Whatever I do, I can't get a sinatra app to start on my local machine.
hello.rb:
require 'sinatra'
get '/' do
"Hello World!"
end
"$ ruby hello.rb" and "$ ruby -rubygems hello.rb" both result in a new prompt with no action taken.
Any tips or pointers?