場合によっては、tag
以下のように引数がありません。
<%= tag + ',' if tag %> を入れましたが、このエラーが発生します
ActionView::Template::Error (引数の数が間違っています (1 に対して 0)):
どうすれば解決できますか?
index.html.erb
<%= render 'layouts/social_like', :url => root_url, :title => @title %>
レイアウト/_social_like.html.erb
....
<a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-hashtags="<%= tag + ',' if tag %>hash2,hash3,hash4">Tweet</a>
....