Skip to content

Instantly share code, notes, and snippets.

@atmos
Forked from paul/app.rb
Created June 19, 2010 19:17
Show Gist options
  • Save atmos/445193 to your computer and use it in GitHub Desktop.
Save atmos/445193 to your computer and use it in GitHub Desktop.
module Things
get '/' do
'Hello!'
end
end
module Keister
class App < Sinatra::Base
include Things
end
end
thin start
>> Using rack adapter
/Users/rando/Code/mongomachine/keister/app2.rb:3:in `<module:Things>': undefined method `get' for Things:Module (NoMethodError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment