Using || in Case switch in Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:43:17Z http://stackoverflow.com/feeds/question/841585 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/841585/using-in-case-switch-in-rails 1 Using || in Case switch in Rails Rick 2009-05-08T20:11:29Z 2009-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>&lt;% case @page_title when "Log in" || "Forgot Your Password" || "Create a New Password" %&gt;&lt;%= render :partial =&gt; "common/hello-world" -%&gt;&lt;% end -%&gt; </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#841604 4 Answer by Aaron F. for Using || in Case switch in Rails Aaron F. 2009-05-08T20:17:04Z 2009-05-08T20:17:04Z <p>This is what you want:</p> <pre><code>&lt;% case @page_title when "Log in", "Forgot Your Password", "Create a New Password" %&gt;&lt;%= render :partial =&gt; "common/hello-world" -%&gt;&lt;% end -%&gt; </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#841605 2 Answer by pts for Using || in Case switch in Rails pts 2009-05-08T20:17:04Z 2009-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>