This rule was introduced in RuboCop 1.68 to encourage passing additional keyword arguments directly instead of using merge.
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
<div class="table-actions">
|
|
<%= content %>
|
|
|
|
<% if actions.include?(:edit) %>
|
|
<%= action(:edit, **edit_options, text: edit_text, path: edit_path) %>
|
|
<% end %>
|
|
|
|
<% if actions.include?(:destroy) %>
|
|
<%= action(:destroy, **destroy_options, text: destroy_text, path: destroy_path) %>
|
|
<% end %>
|
|
</div>
|