Skip to content

Instantly share code, notes, and snippets.

@vangberg
Created January 31, 2010 23:46
Show Gist options
  • Save vangberg/291321 to your computer and use it in GitHub Desktop.
Save vangberg/291321 to your computer and use it in GitHub Desktop.
## app.rb
class SomeModule < Sinatra::Base
get '/some' do
..
end
end
class MyApp < Sinatra::Base
use SomeModule
get '/foo' do
...
end
end
## config.ru
require 'app'
run MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment