Dear List, Given that I am developing a rails 2.3.5 site, When it comes to storing threaded comments in a blog or forum, Then which plugin/gem should be considered "State of the Art"? I''m starting with these URLs: http://github.com/rails/acts_as_tree http://github.com/rails/acts_as_nested_set http://github.com/collectiveidea/awesome_nested_set http://github.com/chris/better_nested_set http://github.com/elight/acts_as_commentable_with_threading I''m looking for opinionated people with opinions about my question. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Audrey Lee wrote:> Dear List, > > Given that I am developing a rails 2.3.5 site, > When it comes to storing threaded comments in a blog or forum, > Then which plugin/gem should be considered "State of the Art"? > > I''m starting with these URLs: > > http://github.com/rails/acts_as_treeSkip it. It uses an inefficient data model.> http://github.com/rails/acts_as_nested_set > http://github.com/collectiveidea/awesome_nested_set > http://github.com/chris/better_nested_setI''d use one of these. I seem to recall that awesome_nested_set is the nicest.> http://github.com/elight/acts_as_commentable_with_threadingI''ve never used this, so I''m not certain which tree model it uses.> > I''m looking for opinionated people with opinions about my question.Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
acts_as_commentable_with_threading just requires awesome_nested_set go ahead and use it On Thu, May 13, 2010 at 5:37 AM, Marnen Laibow-Koser <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Audrey Lee wrote: >> Dear List, >> >> Given that I am developing a rails 2.3.5 site, >> When it comes to storing threaded comments in a blog or forum, >> Then which plugin/gem should be considered "State of the Art"? >> >> I''m starting with these URLs: >> >> http://github.com/rails/acts_as_tree > > Skip it. It uses an inefficient data model. > >> http://github.com/rails/acts_as_nested_set >> http://github.com/collectiveidea/awesome_nested_set >> http://github.com/chris/better_nested_set > > I''d use one of these. I seem to recall that awesome_nested_set is the > nicest. > >> http://github.com/elight/acts_as_commentable_with_threading > > I''ve never used this, so I''m not certain which tree model it uses. > >> >> I''m looking for opinionated people with opinions about my question. > > Best, > -- > Marnen Laibow-Koser > http://www.marnen.org > marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org > -- > Posted via http://www.ruby-forum.com/. > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 12 May 2010 18:54, Audrey A Lee <audrey.lee.is.me-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> http://github.com/rails/acts_as_tree > http://github.com/rails/acts_as_nested_set > http://github.com/collectiveidea/awesome_nested_set > http://github.com/chris/better_nested_set > http://github.com/elight/acts_as_commentable_with_threading > > I''m looking for opinionated people with opinions about my question.Given a choice of nested sets, I''d use "awesome_nested_set". But "acts_as_commentable_with_threading" seems to say exactly what you want to do; so I''d look into that in a bit more detail. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.