views:

133

answers:

3

Hi, I'm going to develop a social like network using Ruby on Rails. For this app I need basic social functionality like friends, activities, authentication, user profile, facebook connect, comments. I searched for rails plugins with social functions and i found - tog and community engine. So which is better and more easier to extend? Thanks

A: 

The functionality you named is almost trivial in Rails (except maybe for Facebook Connect). Have you considered developing the software that powers your network yourself?

Scavenger
and probably authentication.
neutrino
Yes, but I`ve wandered if there is a good plugin to use...
Dimitar Vouldjeff
+1  A: 

You might want to check out this link: http://jimneath.org/2008/04/25/building-a-social-network-site-in-rails/

Swanand
A: 

Dimitar,

I would suggest you to check on http://ruby-toolbox.com/ for rails solutions (implementations) of the features you mentioned before. Example:

http://ruby-toolbox.com/categories/social_networking.html or http://ruby-toolbox.com/categories/rails_authentication.html

Now, it also depends on how much you want to customize your site. If you want to use something out of the box (that has the requested features), you can choose between http://www.communityengine.org/ and http://lovdbyless.com/

Vlad Zloteanu