public
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack.git
Click here to lend your support to: mack and make a donation at www.pledgie.com !
markbates (author)
Sun Oct 26 09:36:58 -0700 2008
commit  9b9a5e9cc108605fd5cb139934e96fe7d567eb13
tree    bdee97aaddb4e6f82c966ae8bbb3cd2a61b54dc1
parent  5fbbad25642c0596936c8cab14c537c52ed8e34c
mack /
name age message
file .gitignore Tue Aug 26 17:18:48 -0700 2008 ignore test/fake_application/tmp [markbates]
file CHANGELOG Loading commit data...
file README Fri Aug 29 10:11:35 -0700 2008 Updated README [markbates]
file Rakefile Fri Jul 25 12:57:56 -0700 2008 Fixed: Files should be moved under lib/mack [#57] [markbates]
directory bin/
directory lib/
directory tasks/
directory test/
README
=Hello, and welcome to Mack!

Mack is a Ruby web application framework. It takes the best ideas from several frameworks, including Rails, Merb, and 
Ramaze, and tries to improve upon those ideas. Mack uses Rack[http://rack.rubyforge.org] as an abstraction layer to 
separate itself from it's deployment.

Mack is also about performance. Because Mack uses technologies like Thin[http://code.macournoyer.com/thin] and 
Rack[http://rack.rubyforge.org], Mack is a multithreaded and fast framework. Current tests show 
Mack/Thin[http://code.macournoyer.com/thin] is twice as fast as Rails/Mongrel. Mack tries to strip out a lot of the 
cruft from other frameworks, like Rails, and delivers you a fast, efficient framework designed for actual real world 
development.

==Installation
  $ sudo gem install mack

==Getting Started
First things first, let's generate your application:
  $ mack <app_name>

To run a Mack application:
  $ mackery server

mackery server takes the following options:
  $ mackery server -p <port> -e <environment> -h <rack_handler>
  
The rack_handler one will allow you to switch which server is used to run the app. See Rack for more Rack::Handlers.
  
You can also run:
  $ mackery console
  
This will give you console level access to your application.


==Contact
Please mail bugs, suggestions and patches to <bugs@mackframework.com>.

On the web at: http://www.mackframework.com

==License and Copyright
Copyright (C) 2008 Mark Bates, http://www.mackframework.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 
documentation files (the "Software"), to 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 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.

==Other documentation:
* Rack[http://rack.rubyforge.org]
* Thin[http://code.macournoyer.com/thin]