public
Description: Distributed Role-Based Access Control Service -- Restful authorization
Homepage: http://www.preallowed.com
Clone URL: git://github.com/dmitryame/preallowed.git
name age message
file .autotest Wed Aug 13 08:00:22 -0700 2008 moved autotest images to public folder git-svn... [dmitry]
file .gitignore Wed Jul 15 08:04:46 -0700 2009 Ignore sqlite databases [crossblaim]
file Capfile Mon Sep 29 17:02:09 -0700 2008 preparing to deploy [dmitryame]
file README Loading commit data...
file Rakefile Mon Aug 11 13:24:40 -0700 2008 fresh application initialized git-svn-id: svn+... [dmitry]
directory app/
directory config/
directory db/ Tue Jul 14 09:11:15 -0700 2009 migrating to rails 2.3.2 [dmitryame]
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/ Tue Jul 14 09:11:15 -0700 2009 migrating to rails 2.3.2 [dmitryame]
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
  ./script/populate_dev # you might have to give it exec permissions (chmod +x ./script/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.