Skip to content

Instantly share code, notes, and snippets.

@kgrz
Created August 9, 2012 06:14
Show Gist options
  • Save kgrz/3301573 to your computer and use it in GitHub Desktop.
Save kgrz/3301573 to your computer and use it in GitHub Desktop.
Sinatra OO style using helpers
require 'sinatra'
get '/' do
my_domain.say_hello
end
get '/bye' do
my_domain.say_goodbye
end
helpers do
def my_domain
MyDomain.new
end
end
class MyDomain
def say_hello
"Hello World"
end
def say_goodbye
"Goodbye"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment