This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
merb-plugins / merb_helpers
| name | age | message | |
|---|---|---|---|
| .. | |||
| |
LICENSE | Tue Oct 02 18:12:58 -0700 2007 | [wycats@gmail.com] |
| |
README | Thu Jan 03 11:37:46 -0800 2008 | [wycats@gmail.com] |
| |
Rakefile | Fri Feb 29 20:20:48 -0800 2008 | [ivey] |
| |
TODO | Tue Oct 02 18:12:58 -0700 2007 | [wycats@gmail.com] |
| |
lib/ | Thu Feb 28 21:36:20 -0800 2008 | [Sergei Zimakov] |
| |
spec/ | Thu Feb 28 21:36:20 -0800 2008 | [Sergei Zimakov] |
README
merb_helpers
=================
A plugin for the Merb Web framework that provides different view helpers.
To use this plugin in merb in your app
config/dependencies.rb
#...
dependency "merb_helpers"
#...
By default all modules of merb_helpers are loaded and are available to your merb app.
You can selectively include/exclude modules from this list to keep you app lean if you like.
The inclusions/exclusions are relative to all modules.
\:include: will only include the specified modules.
\:exclude: will include all except the specified modules.
Do not use :include: and :exclude: options at the same time or an error will be raised.
To set this up in config/plugins.yml
To Include specified helpers
\:merb_helpers:
\:include: - date_time_helpers
- form_helpers
To Exclude specified helpers
\:merb_helpers:
\:exclude: - date_time_helpers
- form_helpers



