To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / awesome_nested_set / test / fixtures / category.rb @ 442:753f1380d6bc

History | View | Annotate | Download (229 Bytes)

1
class Category < ActiveRecord::Base
2
  acts_as_nested_set
3
  
4
  def to_s
5
    name
6
  end
7
  
8
  def recurse &block
9
    block.call self, lambda{
10
      self.children.each do |child|
11
        child.recurse &block
12
      end
13
    }
14
  end
15
end