AutoFacebook
Easy to mount omniauth-facebook to Rails
Installation
Add these lines to your application's Gemfile:
gem "omniauth"
gem "omniauth-facebook"
gem "auto-facebook"
Rails 4.0+
gem "omniauth"
gem "omniauth-facebook"
gem "auto-facebook", "0.1.rails4"
And then execute:
$ bundle
Install
1. rails g auto_facebook:user
2. rake db:migrate
3. rails g auto_facebook:install
4. touch tmp/restart.txt
Config
Edit config/config.yml
# If you use SettingsLogic
add:
facebook_app_id: 'APP_ID'
facebook_secret: 'APP_SECRET'
Other
<%= link_to("Facebook Login", Setting.domain + user_omniauth_authorize_path(:facebook), :class => "btn btn-facebook") %>
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request