Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 209 Bytes

useful_view_helpers.md

File metadata and controls

14 lines (10 loc) · 209 Bytes

Useful view helpers

def unknown(attribute)
  attribute.presence || " ".html_safe
end

alias_method :u, :unknown
<dd class="col-lg-6"><%=u object.method_that_could_return_nil %> </dd>