templates/default/module/html/attribute_details.erb in yard-0.5.2 vs templates/default/module/html/attribute_details.erb in yard-0.5.3
- old
+ new
@@ -1,9 +1,9 @@
<% scopes(attr_listing) do |list, scope| %>
<div id="<%= scope %>_attr_details" class="attr_details">
<h2><%= scope.to_s.capitalize %> Attribute Details</h2>
<% list.each_with_index do |meth, i| %>
- <% rw = meth.namespace.attributes[meth.scope][meth.name.to_s.gsub(/=$/, '').to_sym] %>
+ <% rw = meth.attr_info %>
<span id="<%= anchor_for(rw[:write]) %>"></span>
<span id="<%= anchor_for(rw[:read]) %>"></span>
<%= yieldall :object => meth, :index => i %>
<% end %>
</div>