summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MIT-LICENSE8
-rw-r--r--README.rdoc42
-rw-r--r--Rakefile3
3 files changed, 39 insertions, 14 deletions
diff --git a/MIT-LICENSE b/MIT-LICENSE
index 825c5e9..73e123c 100644
--- a/MIT-LICENSE
+++ b/MIT-LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 20XX-20XX FIXME
+Copyright (c) 2011-2012 Jérémy Zurcher
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
@@ -6,13 +6,13 @@ deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-
+
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
-
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.rdoc b/README.rdoc
index bdeaafc..48d08cf 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,21 +1,28 @@
zorglub
- by Jéérmy Zurcher
+ by Jérémy Zurcher
http://cgit.asynk.ch/cgi-bin/cgit/zorglub
== DESCRIPTION:
-a very very light and tiny web application framework based on rack[http://rack.rubyforge.org/]
+a nano web application framework based on rack[http://rack.rubyforge.org/]
-== FEATURES/PROBLEMS:
+== FEATURES:
-* FIXME
+* class#method mapping scheme (/class_mapping/method_name/*args)
+* class level layout and engine specification
+* method level layout, engine and view specification
+* before_all and after_all methods callbacks
+* redirection
+* partial
+* class level inherited variables
+* session
== SYNOPSIS:
-* FIXME
-
-For less minimalistic and more sane examples you may look at:
+For a simple test application run:
+* rackup ./example/sample.ru
+Don't forget to look at
* the spec/ folder
== REQUIREMENTS:
@@ -24,13 +31,30 @@ For less minimalistic and more sane examples you may look at:
== DOWNLOAD/INSTALL:
-* FIXME
+From rubygems:
+
+ [sudo] gem install zorglub
+
+or from the git repository on github:
+
+ git clone git://github.com/jeremyz/zorglub.git
+ cd zorglub
+ rake gem:install
+
+== RESOURCES:
+
+You can find this project in a few places:
+
+Online repositories:
+
+* https://github.com/jeremyz/zorglub
+* http://cgit.asynk.ch/cgi-bin/cgit/zorglub/
== CREDITS:
Special thanks to:
-* FIXME
+* Manveru [https://github.com/manveru/innate]
== LICENSE:
diff --git a/Rakefile b/Rakefile
index c254322..2325cc6 100644
--- a/Rakefile
+++ b/Rakefile
@@ -43,7 +43,8 @@ PROJ.spec.opts << '--color'
PROJ.rcov.opts << '-I lib'
#
# Dependencies
-depend_on 'rake', '>=0.8.7'
+depend_on 'rack'
+depend_on 'rake', '>=0.8.0'
#
task :default => [:spec]
#