From 2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 30 Dec 2015 17:30:38 -0800 Subject: Get rid of 'evernote-oauth' and install 'omniauth' Removing the 'evernote-oauth' gem because I couldn't figure out how to get it to work. Decided to go with OmniAuth to handle OAuth because I had a good experience with it in the past and figured it would be simpler to set up. Also installing the 'omniauth-evernote' provider to enable authentication with Evernote. Comment out the route I had created to `auth/evernote#index` for 'evernote-oauth'. --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config') diff --git a/config/routes.rb b/config/routes.rb index cb4962f..a729a7f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,7 +1,7 @@ Rails.application.routes.draw do root 'home#index' - get '/auth/evernote' => 'auth/evernote#index' + # get '/auth/evernote' => 'auth/evernote#index' # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". -- cgit v1.2.3