我环顾了一下rails中的block helpers,但我比开始的时候更加困惑。我的目标是创建一个这样的助手
<% needs_clearance 1 do %>
You'll see this block if your clearance is level 1, 4 or 5
<% end %>
这应该产生
<% if current_user.clearance.id == 1 or current_user.clearance_id == 4 or current_user.clearance.id == 5 %>
You'll see this block if your clearance is level 1, 4 or 5
<% end %>
4 和 5 分别是管理和管理员角色。
如何创建此块助手?