I''m interested in working on a message board application that uses ruby on rails. I''d like to see something end up similar to vBullieten, but with more of a 37signals type of less-is-more philosophy... mostly meaning less need for preferences and settings and configurations. I''ve checked rubyforge, and it looks like there are various forum apps uploaded there, some a little better than others, but none of the ones I''ve checked out are anywhere close to being as streamlined and clean as I want. I''m thinking about writing my own forum, not only because writing your own code is the best way to get what you want, but also because im sure that''d be a good way to get more comfortable with ruby on rails... but before I jumped into that I wanted to see if there are any forum/message board projects that stand out as something everyone thinks is a good solid ruby forum. --------------------------------------------- Michael J. Anderson mja_online@hotmail.com
Michael Anderson wrote:> I''m interested in working on a message board application that uses ruby > on rails. > > I''d like to see something end up similar to vBullieten, but with more of > a 37signals type of less-is-more philosophy... mostly meaning less need > for preferences and settings and configurations. > > I''ve checked rubyforge, and it looks like there are various forum apps > uploaded there, some a little better than others, but none of the ones > I''ve checked out are anywhere close to being as streamlined and clean as > I want. > > I''m thinking about writing my own forum, not only because writing your > own code is the best way to get what you want, but also because im sure > that''d be a good way to get more comfortable with ruby on rails... but > before I jumped into that I wanted to see if there are any forum/message > board projects that stand out as something everyone thinks is a good > solid ruby forum.Hello Have you checked out this one?: http://rforum.andreas-s.net/trac/
Unless you are very comfortable with acts_as_tree, I''d strongly suggest if you are going to build something from scratch using Bob Silva''s acts_as_threaded plugin: http://www.railtie.net/articles/2006/02/05/rails-acts_as_threaded-plugin It is a beautiful thing :) HTH, Dean On 3/3/06, Michael Anderson <mja_online@hotmail.com> wrote:> > I''m interested in working on a message board application that uses ruby on > rails. > > I''d like to see something end up similar to vBullieten, but with more of a > 37signals type of less-is-more philosophy... mostly meaning less need for > preferences and settings and configurations. > > I''ve checked rubyforge, and it looks like there are various forum apps > uploaded there, some a little better than others, but none of the ones > I''ve > checked out are anywhere close to being as streamlined and clean as I > want. > > I''m thinking about writing my own forum, not only because writing your own > code is the best way to get what you want, but also because im sure that''d > be a good way to get more comfortable with ruby on rails... but before I > jumped into that I wanted to see if there are any forum/message board > projects that stand out as something everyone thinks is a good solid ruby > forum. > > --------------------------------------------- > Michael J. Anderson > mja_online@hotmail.com > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/a7236d24/attachment-0001.html
On 3/3/06, Howard Roberts <hdean.roberts@gmail.com> wrote:> > Unless you are very comfortable with acts_as_tree >D,oh! That should have read acts_as_nested_set! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/9ed32a97/attachment-0001.html
Howard Roberts wrote:> On 3/3/06, Howard Roberts <hdean.roberts@gmail.com> wrote: >> >> Unless you are very comfortable with acts_as_tree >> > D,oh! That should have read acts_as_nested_set!Interesting stuff. I didnt know this list was viewable in message board format! hah. I haven''t dug into the rails tree stuff yet, but I think I probably should. In message boards in general, do you all think threaded messages is that important? as opposed to topics with messages ordered by date, rather than having every message be a reply to another individual message... whats the real benefit of that? -- Posted via http://www.ruby-forum.com/.
Michael wrote:> Howard Roberts wrote: >> On 3/3/06, Howard Roberts <hdean.roberts@gmail.com> wrote: >>> >>> Unless you are very comfortable with acts_as_tree >>> >> D,oh! That should have read acts_as_nested_set! > > Interesting stuff. I didnt know this list was viewable in message board > format! hah. > > I haven''t dug into the rails tree stuff yet, but I think I probably > should. > > In message boards in general, do you all think threaded messages is that > important? as opposed to topics with messages ordered by date, rather > than having every message be a reply to another individual message... > whats the real benefit of that?RForum (www.ruby-forum.com) uses a threaded data structure internally, you could easily write a view to represent that. I prefer flat topics, but threading is important for the mailing list interface, that''s why I implemented it. -- Posted via http://www.ruby-forum.com/.