Skip to content

Instantly share code, notes, and snippets.

@granolocks
Created September 20, 2012 15:13
Show Gist options
  • Select an option

  • Save granolocks/3756516 to your computer and use it in GitHub Desktop.

Select an option

Save granolocks/3756516 to your computer and use it in GitHub Desktop.
app.rb
class Application < Sinatra:: Base
def initialize
@xinstance = 'first'
super
end
get '/1' do
@xinstance = "hit 1"
# returns "hit 1"
end
get '/2' do
@xinstance
# returns 'first'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment