diff options
| author | Teddy Wing | 2015-12-30 17:30:38 -0800 |
|---|---|---|
| committer | Teddy Wing | 2015-12-30 17:45:28 -0800 |
| commit | 2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9 (patch) | |
| tree | e45562a8f6a9de2331007bf5516304d9511eba77 /Gemfile | |
| parent | 5519e0fa377345b7f85a1f5c4f8eed2117931581 (diff) | |
| download | Evernote-Rails-Example-2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9.tar.bz2 | |
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'.
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -32,7 +32,10 @@ gem 'sdoc', '~> 0.4.0', group: :doc # Use Capistrano for deployment # gem 'capistrano-rails', group: :development -gem 'evernote_oauth' +# gem 'evernote_oauth' + +gem 'omniauth' +gem 'omniauth-evernote' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console |
