RubyGems Navigation menu

kaffe 0.0.4

# 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

Gemfile:
=

安装:
=

版本列表:

  1. 0.0.4 March 08, 2017 (10.0 KB)
显示所有版本 (共 2 个)

Runtime 依赖 (2):

rack ~> 1.5
tilt ~> 1.4

Development 依赖 (3):

bundler ~> 1.14
rake ~> 10.0
rspec ~> 3.0

所有者:

作者:

  • Patrik Pettersson

SHA 256 校验和:

=

下载总量 2,973

这个版本 2,963

版本发布:

许可:

MIT

需要的 Ruby 版本: >= 0

链接: