public
Description: Distributed Role-Based Access Control Service -- Restful authorization
Homepage: http://www.preallowed.com
Clone URL: git://github.com/dmitryame/preallowed.git
dmitryame (author)
Tue Sep 30 12:17:06 -0700 2008
commit  3bb78cfebb28deeb9b320d8779d213754193d8e0
tree    60d83ba00c1b5305bb1e86bb6d0ea87ca2c6d59c
parent  7a7fb5ae77e89d4cb902ed45591ef493a344b233
name age message
file .autotest Wed Aug 13 08:00:22 -0700 2008 moved autotest images to public folder git-svn... [dmitry]
file .gitignore Loading commit data...
file Capfile Mon Sep 29 17:02:09 -0700 2008 preparing to deploy [dmitryame]
file README
file Rakefile Mon Aug 11 13:24:40 -0700 2008 fresh application initialized git-svn-id: svn+... [dmitry]
directory app/
directory config/
directory db/
directory doc/ Mon Aug 11 13:24:40 -0700 2008 fresh application initialized git-svn-id: svn+... [dmitry]
directory log/ Mon Sep 01 15:02:16 -0700 2008 added emty directories [dmitryame]
directory public/
directory script/ Mon Sep 29 17:02:09 -0700 2008 preparing to deploy [dmitryame]
directory test/
directory tmp/ Mon Sep 01 15:02:16 -0700 2008 added emty directories [dmitryame]
directory vendor/
README
== DESCRIPTION:
====================================================================
Distributed Role-Based Access Control Service -- Restful authorization

The service is provided at http://preallowed.com

The source code for the service can be obtained at http://github.com/dmitryame/preallowed/tree/master , feel free to 
install and use the service on your local infrastructure if that's what you need.


== FEATURES:
====================================================================
* Use Preallowed to implement Role-Based Access Control (RBAC) for your applications.
* Preallowed is implemented as a RESTful web service, thus easiest to be accessed from any Ruby on Rails application via 
Active Resource. See examples at http://www.preallowed.com/home/help 
* The service can be access from any language that supports http API. We've tested it with Java, but other languages 
like C++, C#, Basic, Perl, etc... should work as well.
* The source code has complete test coverage. 


== INSTALL
====================================================================
* Install rails 2.0.1 or later
* Obtain a source code from github http://github.com/dmitryame/preallowed/tree/master
* Copy ./config/database.yml.example to ./config/database.yml               
* Copy ./config/environment.rb.example to ./config/environment.rb  (the copied files from 2 last steps will not be 
versioned, so feel free to tune them up according to your needs)
* Run following commands
  rake db:create:all
  rake db:migrate
  ./scripts/populate_dev # you might have to give it exec permissions (chmod +x ./scripts/populate_dev)
* Run autotest or rake to make sure all the tests pass -- this is a good indication that the install was successful.


== POST INSTALL
====================================================================
* You are ready to use the Preallowed service. 
* Configure your Subjects, Roles, Resources using the the web application interface.
* Configure your application to be able to access the service, see how to do it here http://www.preallowed.com/home/help 



== LICENSE

(The MIT License)

====================================================================
==== Preallowed
Copyright (c) 2008 The Preallowed Development Team
====================================================================

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 OR COPYRIGHT HOLDERS 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.