Categories: None [Edit]
    kaffe
# Kaffe Framework
This is a minimalistic webframework inspired by sinatra and 
rails.
## Basic usage
The idea is to use be able to create modular applications and
forward requests between them.
        class Blog < Kaffe::Base
          use Rack::CommonLogger
          get '/?' do
            "Hello From Blog"            
          end
        end
        class Admin < Kaffe::Base
          get '/login' do
            ... Login logics ...
          end
          error 400..500 do |code, message|
            .. show pretty error message ..
          end
        end
        class MyApp < Kaffe::Base
          route '/blog', Blog
          route '/admin', Admin
        end
        run MyApp
## API overview
    Total
Ranking: 158,761 of 187,622
          Downloads: 3,293
        Daily
Ranking: 106,140 of 187,603
          Downloads: 1
        Downloads Trends
Ranking Trends
Num of Versions Trends
Popular Versions (Major)
Popular Versions (Major.Minor)
Depended by
| Rank | Downloads | Name | 
|---|
Owners
| # | Gravatar | Handle | 
|---|---|---|
| 1 | kaffepanna |