= Capcode

Copyright (C) 2009 Gregoire Lejeune

* http://capcode.rubyforge.org
  
== DESCRIPTION: 

Capcode is a web microframework

== FEATURES/PROBLEMS:

=== 0.1.0
* First public release
* No models !!!

== SYNOPSIS:

	# file: sample.rb
	require 'rubygems'
	require 'capcode'

	module Capcode
	  class Hello < Route '/hello'
	    def get
	      "Hello World #{Time.now} !"
	    end
	  end
	end
	
	Capcode.run( )

== Running Capcode Apps

* Run: <tt>ruby sample.rb</tt>
* Visit http://localhost:3000/

== REQUIREMENTS:

* rack

== INSTALL:

  sudo gem install capcode

== LICENSE:

Capcode is freely distributable according to the terms of the
GNU General Public License.

This program is distributed without any warranty. See the file
'COPYING' for details.

