My problem is that I'm trying to do something like
current_page?(controller: 'tigers', action:('index'||'new'||'edit'))
which returns true when the controller is tigers and the action is either index, new, or edit.
The above does not throw an error, but only matches the first action.
Help!