I'm using: ruby-1.9.3-p392 and sinatra-1.4.3.
when I run my file, I got this errors:
/home/belka/.rvm/gems/ruby-1.9.3-p392@Rails3.2.13/gems/sinatra-1.4.3/lib/sinatra/base.rb:1408:in `run!': undefined method `run' for HTTP:Module (NoMethodError)
from /home/belka/.rvm/gems/ruby-1.9.3-p392@Rails3.2.13/gems/sinatra-1.4.3/lib/sinatra/main.rb:25:in `block in <module:Sinatra>'
my code is the simplest code for a sinatra newbie (hello.rb):
require 'rubygems'
require 'sinatra'
get '/' do
'Hello World!'
end