A Rails 3 engine for Twitter, Facebook and LinkedIn logins using OmniAuth
To use OmniSocial in a Rails 3 application:
-
Require it in the Gemfile:
gem 'omnisocial'
-
Install it by running
bundle
. -
Run
rails g omnisocial
to copy an initializer, database migration and some CSS and image assets into your base application directory. -
Edit
config/initializers/omnisocial.rb
and include your application's Twitter and Facebook OAuth configuration. -
Run
rake db:migrate
to create the user and login_account tables. -
Test that the logins work by accessing
/login
inside your application.
Some more detailed installation instructions are in the project announcement article.
OmniSocial is Copyright (c) 2010-2011 Tim Riley and Icelab, and is released under MIT License.