Skip to content

Instantly share code, notes, and snippets.

@Oshuma
Created November 4, 2009 05:44
Show Gist options
  • Select an option

  • Save Oshuma/225812 to your computer and use it in GitHub Desktop.

Select an option

Save Oshuma/225812 to your computer and use it in GitHub Desktop.
class App < Sinatra::Base
def initialize(url = '/some/url')
@url = url
end
get "#{@url}/?" do
# Doesn't match the URL.
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment