Created
August 9, 2013 06:13
-
-
Save kozy4324/6191506 to your computer and use it in GitHub Desktop.
Railsのrenderメソッドでレンダリングされる時だけulタグで括るラッパー
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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