Images should have an alt prop with meaningful text or an empty string for decorative images.
<%= image_tag "spinners/octocat-spinner-16px.gif", size: "12x12" %>
<!-- good -->
<%= image_tag "spinners/octocat-spinner-16px.gif", size: "12x12", alt: "GitHub Logo spinner" %>
<!-- also good -->
<%= image_tag "spinners/octocat-spinner-16px.gif", size: "12x12", alt: "" %>