aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorTeddy Wing2015-12-30 17:30:38 -0800
committerTeddy Wing2015-12-30 17:45:28 -0800
commit2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9 (patch)
treee45562a8f6a9de2331007bf5516304d9511eba77 /Gemfile
parent5519e0fa377345b7f85a1f5c4f8eed2117931581 (diff)
downloadEvernote-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--Gemfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 33b3726..953364f 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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