0.0
No commit activity in last 3 years
No release in over 3 years
This gem will mock the oauth of facebook using facemock.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.0.8
>= 0
 Project Readme

Gem Version Build Status Coverage Status Code Climate

Facemock::Oauth

Facemock::OAuth will mock the oauth of facebook using facemock.

Installation

Add this line to your application's Gemfile:

gem 'facemock-oauth'

And then execute:

$ bundle

Or install it yourself as:

$ gem install facemock-oauth

Usage

Facemock OAuth

for Rails

$ vi config/routes.rb

YourApp::Application.routes.draw do
  devise_scope :user do
    match ':provider/sign_in',            to: 'your_sign_in_controller'
    match 'users/facemock/auth/callback', to: 'your_callback_controller'
  end
end

$ vi config/environments/development.rb

Facemock::OAuth::LoginHook.paths   = [ '/facebook/sign_in', '/user/facebook/sign_in' ]
Facemock::OAuth::CallbackHook.path = '/users/facemock/auth/callback'

config.middleware.use Facemock::OAuth::LoginHook
config.middleware.use Facemock::OAuth::Login
config.middleware.use Facemock::OAuth::Authentication
config.middleware.use Facemock::OAuth::CallbackHook

for Sinatra

$ vi config.ru

require 'sinatra'
require 'facemock-oauth'

Facemock::OAuth::LoginHook.paths   = [ '/facebook/sign_in', '/user/facebook/sign_in' ]
Facemock::OAuth::CallbackHook.path = '/users/facemock/auth/callback'

use Facemock::OAuth::LoginHook
use Facemock::OAuth::Login
use Facemock::OAuth::Authentication
use Facemock::OAuth::CallbackHook

require File.expand_path 'app', File.dirname(__FILE__)

run Sinatra::Application

User registration to Facemock

See the https://github.com/ogawatti/facemock.

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