vote up 1 vote down star
1

I'm looking for advice on the current best forum/community/bulletin board system written in Rails for integration into an existing Rails app.

I'm also open to non-Rails forums that can be integrated with my Rails app & authentication without too much trouble.

Any advice?

I did a bit of research and found answers from more than a year ago - have better solutions come about since? http://stackoverflow.com/questions/2549/what-is-good-forum-software-to-add-to-an-existing-rails-application

Someone semi-recently blogged about choosing to integrate punBB (PHP): craigjolicoeur.com/blog/how-to-integrate-punbb-into-an-existing-ruby-on-rails-application

flag

3 Answers

vote up 0 vote down

Or have a look at http://github.com/technoweenie/altered%5Fbeast

link|flag
vote up 0 vote down

I had to do this very thing a couple of months ago. After some research I concluded it would be simpler, faster, and more robust to write the forum code myself in my existing app than to try to integrate another forum system.

All you need are three resources: forums, topics, posts -- each one following the Rails REST/resource conventions. You could write the code and tests in just a few hours, and by definition it will all integrate perfectly into your existing app. And you'll know exactly how to extend it, as and when you need to, because you wrote the code.

If you try to integrate a separate forum app, you have to worry about unifying the user models, the authentication, and so on. As/when you need to alter it, you have to figure out how somebody else's code works. Much easier (with Rails) just to build onto what you already have.

You'd think in this day and age we'd be able to drop in a forum system pretty easily. After all, forums themselves aren't rocket science. But somehow with Rails it's just quicker to write it yourself.

If you're interested you can see my results here. I'd be happy to send you the code.

link|flag
vote up 1 vote down

I would encourage you to give http://github.com/radar/rboard a go, but that may be a biased opinion. Integrating any application into another is always a less-than-fun experience.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.