view .svn/pristine/ae/aea86446e90f5223c778c46b31f7dc023774621a.svn-base @ 1580:fa3d9c22497c dockerise

More requires
author Chris Cannam
date Fri, 04 Aug 2017 18:01:54 +0100
parents cbb26bc654de
children
line wrap: on
line source
class Category < ActiveRecord::Base
  acts_as_nested_set
  
  def to_s
    name
  end
  
  def recurse &block
    block.call self, lambda{
      self.children.each do |child|
        child.recurse &block
      end
    }
  end
end