Project

tzispa

0.0
No commit activity in last 3 years
No release in over 3 years
A sparkling web framework Rack based
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.9

Runtime

~> 2.2
~> 0.11.2
~> 0.9.0
>= 2.0.1, ~> 2.0
~> 0.20.0
~> 0.6.0
~> 0.5.10
~> 0.3.6
 Project Readme

Tzispa

A sparkling web framework

Frameworks

Tzispa is composed by these frameworks:

Installation

% gem install tzispa

Usage

% tzispa new myproject

Adding apps

% cd myproject
% tzispa generate app mainapp

Tzispa support multi-app projects. Each app must have a unique mount path

% tzispa generate app adminapp --mount=admin

Launch

% tzispa server

Starting app server daemonizing

% tzispa server --daemonize

Adding templates

There are 3 template types: layout, static and block:

  • layout: these are the skeleton entry points in the rig template engine
  • static: these are "light" templates that are a included without any processing as plain text
  • block: the true core of the rig templates, each block template file has an associated ruby file with the template binder class
% tzispa generate rig lister --type=layout --app=mainapp
% tzispa generate rig sitefoot --type=static --app=mainapp
% tzispa generate rig product_detail --type=block --app=mainapp

Work in progress ...