public
Description: Tog Platform Social Component
Homepage: http://www.toghq.com
Clone URL: git://github.com/tog/tog_social.git
aitor (author)
Wed Jul 01 13:23:13 -0700 2009
commit  35db7a1d2a94e8a460aca86ed47b576604b9d68d
tree    8977210ad4039a75fee1c70a6d5185b37174996c
parent  f66e3a4c84b6d32d35ba75f28a38a84b54bcd7eb
tog_social / README.markdown
100644 86 lines (57 sloc) 2.092 kb

Tog Social

Tog Social is the plugin that adds basic social-network support to you site.

Included functionality

  • Profiles (including photos)
  • Groups (including images)
  • Moderated and open groups
  • Public and private groups
  • Invitations for joining a group
  • Bi-directional friendships
  • Followers and fan friendships

Resources

Plugin requirements

Install

If you used the command togify to install tog, then you already have tog_social installed.

If not, install it like any other plugin:

  • Install plugin form source:
ruby script/plugin install git@github.com:tog/tog_social.git
  • Generate installation migration:
ruby script/generate migration install_tog_social
  with the following content:
class InstallTogSocial < ActiveRecord::Migration
  def self.up
    migrate_plugin "tog_social", 1
  end

  def self.down
    migrate_plugin "tog_social", 0
  end
end
  • Add tog_social's routes to your application's config/routes.rb
map.routes_from_plugin 'tog_social'
  • And finally...
 
rake db:migrate

More

http://github.com/tog/tog_social/wikis

Creating relationships between users

Showing friends, followers or followings in a portlet

Copyright (c) 2008 Keras Software Development, released under the MIT license