instiki/vendor/rails/activerecord/test/fixtures/mixins.yml
Jacques Distler 6873fc8026 Upgrade to Rails 2.0.2
Upgraded to Rails 2.0.2, except that we maintain

   vendor/rails/actionpack/lib/action_controller/routing.rb

from Rail 1.2.6 (at least for now), so that Routes don't change. We still
get to enjoy Rails's many new features.

Also fixed a bug in Chunk-handling: disable WikiWord processing in tags (for real this time).
2007-12-21 01:48:59 -06:00

30 lines
537 B
YAML

# Nested set mixins
<% (1..10).each do |counter| %>
set_<%= counter %>:
id: <%= counter+3000 %>
<% end %>
# Big old set
<%
[[4001, 0, 1, 20],
[4002, 4001, 2, 7],
[4003, 4002, 3, 4],
[4004, 4002, 5, 6],
[4005, 4001, 14, 13],
[4006, 4005, 9, 10],
[4007, 4005, 11, 12],
[4008, 4001, 8, 19],
[4009, 4008, 15, 16],
[4010, 4008, 17, 18]].each do |set| %>
tree_<%= set[0] %>:
id: <%= set[0]%>
parent_id: <%= set[1]%>
type: NestedSetWithStringScope
lft: <%= set[2]%>
rgt: <%= set[3]%>
root_id: 42
<% end %>