Has anyone written a plugin to read a DAG (Directed Acyclic graph)? Basically, thinking of implementing a DAG for my project. This DAG would be tracking the life cycle of say a product through it''s versions. Would like to know if anyone has worked on using a DAG in Rails. Thanks, Shashank --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi, I would recommend starting with the following: http://rgl.rubyforge.org/rgl/index.html Good luck, -Conrad On Wed, Apr 16, 2008 at 4:06 AM, Shashaxe <shashankteotia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Has anyone written a plugin to read a DAG (Directed Acyclic graph)? > > Basically, thinking of implementing a DAG for my project. This DAG > would be tracking the life cycle of say a product through it''s > versions. Would like to know if anyone has worked on using a DAG in > Rails. > > Thanks, > Shashank > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Don''t rule out rolling something simple of your own. You can be quite expressive with Arrays and Hashes to keep track of things. If your node set isn''t too big and your connectivity isn''t too wild, you may not need all the generic power that a library packs. -Rob Rob Biedenharn http://agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org On Apr 16, 2008, at 7:25 AM, Conrad Taylor wrote:> Hi, I would recommend starting with the following: > > http://rgl.rubyforge.org/rgl/index.html > > Good luck, > > -Conrad > > On Wed, Apr 16, 2008 at 4:06 AM, Shashaxe <shashankteotia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > > Has anyone written a plugin to read a DAG (Directed Acyclic graph)? > > Basically, thinking of implementing a DAG for my project. This DAG > would be tracking the life cycle of say a product through it''s > versions. Would like to know if anyone has worked on using a DAG in > Rails. > > Thanks, > Shashank--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---