I want my partial below to get the classy
class from it being injected through locals, but I keep getting undefined method for classy.
//view
<%= render layout: "layouts/partial", locals: {className: "classy"} do %>
...
<% end>
//partial
<div class="regular-div <%=className if className?%>"></div>
To check if a local variable is set use
local_assigns.has_key?(:some_key)
orlocal_assigns[:some_key]
to safely access the local variable.A nifty way of handling the common task of building a list of classes is:
Then you can do: