Using || in Case switch in Rails - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:43:17Zhttp://stackoverflow.com/feeds/question/841585http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/841585/using-in-case-switch-in-rails1Using || in Case switch in RailsRick2009-05-08T20:11:29Z2009-05-08T20:30:31Z
<p>I have a partial that I want to display in a layout only when certain pages use that layout. I've set @page_title for all my pages and thought I could use something like this:</p>
<pre><code><% case @page_title when "Log in" || "Forgot Your Password" || "Create a New Password" %><%= render :partial => "common/hello-world" -%><% end -%>
</code></pre>
<p>But, the include is only happening on the page titled "Log in" and not the other pages. Are || statements like this not allowed on Case switches? Is there a different way to set an OR statement in the case switch?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/841585/using-in-case-switch-in-rails/841604#8416044Answer by Aaron F. for Using || in Case switch in RailsAaron F.2009-05-08T20:17:04Z2009-05-08T20:17:04Z<p>This is what you want:</p>
<pre><code><% case @page_title when "Log in", "Forgot Your Password", "Create a New Password" %><%= render :partial => "common/hello-world" -%><% end -%>
</code></pre>
<p>Per <a href="http://docs.huihoo.com/ruby/ruby-man-1.4/syntax.html#case" rel="nofollow">http://docs.huihoo.com/ruby/ruby-man-1.4/syntax.html#case</a></p>
http://stackoverflow.com/questions/841585/using-in-case-switch-in-rails/841605#8416052Answer by pts for Using || in Case switch in Railspts2009-05-08T20:17:04Z2009-05-08T20:17:04Z<p>Use <code>,</code> instead of <code>||</code> to separate the matches after <code>when</code>. See more about Ruby syntax in <a href="http://docs.huihoo.com/ruby/ruby-man-1.4/syntax.html#case" rel="nofollow">http://docs.huihoo.com/ruby/ruby-man-1.4/syntax.html#case</a>.</p>