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 (
Gwyn Morfey (author)
Wed Apr 16 03:58:11 -0700 2008
commit 13beef0e31151c7121baa3f8df595e174ed7e80b
tree f5722b8af97db1ab24cc40bdd2295e5c7e611ae6
parent f35d84c0b5b971ded6c0b698884d2d71707ee091
tree f5722b8af97db1ab24cc40bdd2295e5c7e611ae6
parent f35d84c0b5b971ded6c0b698884d2d71707ee091
merb-plugins / merb_helpers
merb_helpers/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







