I'm trying to use a Gemfile in my Sinatra app, but when I try to launch my app, I got this error:
$ ruby config.ru
config.ru:7:in `<main>': undefined method `run' for main:Object (NoMethodError)
Here are my 3 files:
hi.rb
get "/" do
"Hello world"
end
Gemfile
gem "sinatra"
config.ru
require 'rubygems'
require 'bundler'
Bundler.require
require File.join(File.dirname(__FILE__), 'hi.rb')
run Sinatra::Application
What did I do wrong? How can I fix this?
rackupcommand to start your app. Or install shotgun gem, that is more convenient for development. – taro Sep 17 '12 at 10:13