Created
May 5, 2012 16:16
-
-
Save hmans/2603706 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app = Freddie do | |
path 'one' do | |
render "1" | |
path 'two' do | |
render "2" | |
path 'three' do | |
render "3!" | |
end | |
end | |
finish | |
end | |
path 'foo' do | |
render 'bar' and finish | |
end | |
render 'home page' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment