ここでMichael Hartl のチュートリアルに従っており、ユーザーのインデックスを作成しようとしています。
私のコード:
class UsersController < ApplicationController
before_filter :signed_in_user, only: [:index, :edit, :update]
.
.
.
def index
@users = User.all
end
.
.
.
end
と
<%= provide(:title, 'All users') %>
<h1>All users</h1>
<ul class="users">
<% @users.each do |user| %>
<li>
<%= gravatar_for user, size: 52 %>
<%= link_to user.name, user %>
</li>
<% end %>
</ul>
コードがチュートリアルのコードと正確に一致することを確認しましたが、次のエラーが発生します。
wrong number of arguments (2 for 1)
私は何を間違っていますか?何かご意見は?