1
vote
1answer
38 views
Is it possible to have file-system-like routes with acts_as_tree?
I have a Folder model which acts_as_tree.
Is it possible that the routes represent the folder structure?
Folders:
1: Folder A
2: Folder B
3: Folder C
4: Folder D
5: Folder E
Routes:
…
1
vote
4answers
32 views
Acts_as_tree - one-to-Many: Show Records associated with children on parent page
Hi, I have a relatively simple one-to-many relationship and use acts_as_tree to get it organized in the view. It kinda looks like this:
Root
|_Product 1
|_Product 2
|_Category 1.1
…
0
votes
1answer
58 views
Are ActiveRecord associations valid before committing to database?
I have a model which uses acts-as-tree. For example:
class CartoonCharacter < ActiveRecord::Base
acts_as_tree
end
Acts as tree has these associations:
class ActsAsTree
belongs_to :parent
…
0
votes
1answer
28 views
Does or can acts_as_tree be made to support eager loading?
Using acts_as_tree I would like to be able to preload an entire tree having its complete child hierarchy intact with one SQL call. To that end, I added a tree_id to the table and it runs through all …
8
votes
4answers
883 views
Reddit-style nested/threaded/indented comments for Rails?
I'm wondering if someone has already built a system for threaded comments (for lack of a better term) in Rails or if I need to build it myself.
In case it's not clear, what I'm referring to is a …
3
votes
2answers
302 views
acts_as_tree does not destroy the model’s children
I have this Task model:
class Task < ActiveRecord::Base
acts_as_tree :order => 'sort_order'
end
And I have this test
class TaskTest < Test::Unit::TestCase
def setup
@root = …
