Sono un principiante scusa .... adesso dà un altro errore sulla pagina app/views/books/index.html.erb sulla riga rossa:
codice:
<h1>Listing books</h1>
<table>
<tr>
<th>Id</th>
<th>Titolo</th>
<th>Anno</th>
<th>Autore</th>
<th>Editore</th>
<th>Pagine</th>
<th>Prezzo</th>
<th>Isbn</th>
</tr>
<% @books.each do |book| %>
<tr>
<td><%=h book.ID %></td>
<td><%=h book.TITOLO %></td>
<td><%=h book.ANNO %></td>
<td><%=h book.AUTORE %></td>
<td><%=h book.EDITORE %></td>
<td><%=h book.PAGINE %></td>
<td><%=h book.PREZZO %></td>
<td><%=h book.ISBN %></td>
<td><%= link_to 'Show', book %></td>
<td><%= link_to 'Edit', edit_book_path(book) %></td>
<td><%= link_to 'Destroy', book, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<%= link_to 'New book', new_book_path %>