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 / .svn / pristine / ae / aea86446e90f5223c778c46b31f7dc023774621a.svn-base @ 1297:0a574315af3e

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