sneakin / gretel

A painfully simple means of adding breadcrumbs to a rails project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gretel

A painfully simple tool for generating Rails based breadcrumbs.

Given


Widget.find(1).to_s == ‘widget named sue’

and

Routed Resource of :widgets

When


Gretel.new(‘/widgets/1’).to_s

Then we get the following HTML


<div id="breadcrumb_trail"> <p> <a href='/'>home</a> &raquo; <a href="/widgets">widgets</a> &raquo; <a href="/widgets/1">widget named sue</a>


Thank You

Thank you John Nunemaker (http://github.com/jnunemaker) for saying the original name sucked; In hindsight rails-breadcrumb-trail is kind of dumb.

Thank you Erik Runyon (http://github.com/erunyon) for the name. Much better than what it could have been.

About

A painfully simple means of adding breadcrumbs to a rails project


Languages

Language:Ruby 100.0%