шаблон усов в Rails Views - PullRequest
       5

шаблон усов в Rails Views

1 голос
/ 18 декабря 2011

Я пытаюсь получить шаблон усов для рендеринга в виде рельсов.

Вот что я сделал:

**Added to my gemfile:**
 gem "stache"

Тогда, на мой взгляд:

<% @notifications.each do |n| %>
    <%= render "notifications/notification_item", n.attributes.symbolize_keys   %>
<% end %>

<%= template_include_tag "notifications/notification_item" %>

Мой шаблон усов - app / views / notifications / _notification_item.html.mustache

Я получаю следующие ошибки:

undefined method `attributes' for #<Hash:0x0000010749add8>

Идеи, что я делаю не так? Предложения? Спасибо

...