Skip to content

Instantly share code, notes, and snippets.

@mneedham
Created February 12, 2012 23:20
Show Gist options
  • Select an option

  • Save mneedham/1811708 to your computer and use it in GitHub Desktop.

Select an option

Save mneedham/1811708 to your computer and use it in GitHub Desktop.
hello_world.rb
require 'sinatra/base' # this is 'modular' style
require 'repository'
class HelloWorld < Sinatra::Base
def repository
@repository ||= Repository.new
end
get '/*' do
repository.get('foo')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment