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 / rails / init.rb @ 442:753f1380d6bc

History | View | Annotate | Download (309 Bytes)

1
require 'awesome_nested_set/compatability'
2
require 'awesome_nested_set'
3

    
4
ActiveRecord::Base.class_eval do
5
  include CollectiveIdea::Acts::NestedSet
6
end
7

    
8
if defined?(ActionView)
9
  require 'awesome_nested_set/helper'
10
  ActionView::Base.class_eval do
11
    include CollectiveIdea::Acts::NestedSet::Helper
12
  end
13
end