Skip to content

Instantly share code, notes, and snippets.

@kozy4324
Created August 9, 2013 06:13
Show Gist options
  • Save kozy4324/6191506 to your computer and use it in GitHub Desktop.
Save kozy4324/6191506 to your computer and use it in GitHub Desktop.
Railsのrenderメソッドでレンダリングされる時だけulタグで括るラッパー
class AHelper
def render_ul arg
unless arg.nil? or arg.empty?
"<ul>#{render arg}</ul>".html_safe
else
""
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment