I am using the acts_as_tree gem in order to implement a category list in which a freelancer can select categories and subcategories. "Web design" is one of the subcategories, and it should have two parents: "Design" and "Web development". Is there any way to achieve two parents with the acts_as_Tree gem?
For example:
web_development.children.create({:label => 'Web Design'})
design.children.create({:label => 'Web Design'})
The code above is close to what I am trying to do, except it will make two categories called "web design". I only want one, but I want it to have two parents.