Module: Kamisaku::TemplateHelpers
- Included in:
- HtmlBuilder
- Defined in:
- lib/kamisaku/template_helpers.rb
Instance Method Summary collapse
Instance Method Details
#month_name(month_int) ⇒ Object
5 6 7 8 9 |
# File 'lib/kamisaku/template_helpers.rb', line 5 def month_name(month_int) return "" if month_int.nil? ::Date::MONTHNAMES[month_int] end |