gregschmit/rails-rest-framework

View on GitHub
app/views/rest_framework/routes_and_forms/routes/_route.html.erb

Summary

Maintainability
Test Coverage
<tr>
  <td>
    <% if route[:verb] == "GET" && route[:matches_params] %>
      <%= link_to route[:relative_path], @route_props[:with_path_args].call(route[:route]) %>
    <% else %>
      <%= route[:relative_path] %>
    <% end %>
  </td>
  <td><%= route[:verb] %></td>
  <td><%= route[:controller] %>#<%= route[:action] %></td>
</tr>