public
Description: authentication for merb using dm core
Clone URL: git://github.com/BrianTheCoder/can_has_auth_core.git
Search Repo:
name age message
folder .gitignore Mon May 26 20:50:01 -0700 2008 slice-ifying can_has_auth_core [benburkert]
folder LICENSE Mon May 26 20:50:01 -0700 2008 slice-ifying can_has_auth_core [benburkert]
folder README Mon May 26 20:50:01 -0700 2008 slice-ifying can_has_auth_core [benburkert]
folder Rakefile Sun Jun 22 18:31:30 -0700 2008 incrememted version number [William Smith]
folder TODO Mon May 26 20:50:01 -0700 2008 slice-ifying can_has_auth_core [benburkert]
folder app/ Sun Jun 22 18:29:38 -0700 2008 much need spec and slice love. no more modules ... [William Smith]
folder lib/ Tue May 27 12:01:44 -0700 2008 Removed User from the CanHasAuth module, and ad... [benburkert]
folder public/ Mon May 26 20:50:01 -0700 2008 slice-ifying can_has_auth_core [benburkert]
folder spec/ Sun Jun 22 18:29:38 -0700 2008 much need spec and slice love. no more modules ... [William Smith]
README
CanHasAuth
==========

A slice for the Merb framework. 

------------------------------------------------------------------------------

Instructions for installation:

file: config/init.rb

# add the slice as a regular dependency

dependency 'can_has_auth'

# if needed, configure which slices to load and in which order

Merb::Plugins.config[:merb_slices] = { :queue => ["CanHasAuth", ...] }

# optionally configure the plugins in a before_app_loads callback

Merb::BootLoader.before_app_loads do
  
  Merb::Slices::config[:can_has_auth] = { ... }
  
end

file: config/router.rb

# example: /can_has_auth/:controller/:action/:id

r.add_slice(:CanHasAuth)

# example: /foo/:controller/:action/:id

r.add_slice(:CanHasAuth, 'foo') # same as :path => 'foo'

# example: /:lang/:controller/:action/:id (with :a param set)

r.add_slice(:CanHasAuth, :path => ':lang', :params => { :a => 'b' })

# example: /:controller/:action/:id

r.slice(:CanHasAuth)

Normally you should also run the following rake task:

rake slices:can_has_auth:install

------------------------------------------------------------------------------

You can put your application-level overrides in:

host-app/slices/can_has_auth/app - controllers, models, views ...

Templates are located in this order:

1. host-app/slices/can_has_auth/app/views/*
2. gems/can_has_auth/app/views/*
3. host-app/app/views/*

You can use the host application's layout by configuring the
can_has_auth slice in a before_app_loads block:

Merb::Slices.config[:can_has_auth] = { :layout => :application }

By default :can_has_auth is used. If you need to override
stylesheets or javascripts, just specify your own files in your layout
instead/in addition to the ones supplied (if any) in 
host-app/public/slices/can_has_auth.

In any case don't edit those files directly as they may be clobbered any time
rake can_has_auth:install is run.

------------------------------------------------------------------------------

About Slices
================

Merb-Slices is a Merb plugin for using and creating application 'slices' which
help you modularize your application. Usually these are reuseable extractions
from your main app. In effect, a Slice is just like a regular Merb MVC
application, both in functionality as well as in structure.

When you generate a Slice stub structure, a module is setup to serve as a
namespace for your controller, models, helpers etc. This ensures maximum
encapsulation. You could say a Slice is a mixture between a Merb plugin (a
Gem) and a Merb application, reaping the benefits of both.

A host application can 'mount' a Slice inside the router, which means you have
full over control how it integrates. By default a Slice's routes are prefixed
by its name (a router :namespace), but you can easily provide your own prefix
or leave it out, mounting it at the root of your url-schema. You can even
mount a Slice multiple times and give extra parameters to customize an
instance's behaviour.

A Slice's Application controller uses controller_for_slice to setup slice
specific behaviour, which mainly affects cascaded view handling. Additionaly,
this method is available to any kind of controller, so it can be used for
Merb Mailer too for example.

There are many ways which let you customize a Slice's functionality and
appearance without ever touching the Gem-level code itself. It's not only easy
to add template/layout overrides, you can also add/modify controllers, models
and other runtime code from within the host application.

To create your own Slice run this (somewhere outside of your merb app):

$ merb-gen slice <your-lowercase-slice-name>