This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
web-rb /
| name | age | message | |
|---|---|---|---|
| |
README.markdown | ||
| |
lib/ | Fri Nov 14 21:00:59 -0800 2008 |
Web.rb: Web.py for Ruby
This is only a toy project at the moment. It's an exercise for me to learn more about Ruby.
Example Program:
urls = {
'/', 'index',
'/users', 'users',
}
class Index
def get
"<b>hello there, gentlemen!</b>"
end
end
class Users
def get
"<b> you don't need this</b>"
end
end
Web.start(urls)












