You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
darthapo edited this page Jul 4, 2012
·
2 revisions
Default Helpers
(document these:)
markdown
textile
hidden
Adding Your Own Helpers
In your Gumdrop file:
Gumdrop.view_helpersdodefsay_hi_to(person)"Hello, #{person}!"end# Calculate the years for a copyrightdefcopyright_years(start_year,divider="–")end_year=Date.today.yearifstart_year == end_year"#{start_year}"else"#{start_year}#{divider}#{end_year}"endendend