0.01
No commit activity in last 3 years
No release in over 3 years
Auto Mount Facebook Login
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request