-
-
Save atmos/445193 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Things | |
get '/' do | |
'Hello!' | |
end | |
end | |
module Keister | |
class App < Sinatra::Base | |
include Things | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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