aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
AgeCommit message (Collapse)Author
2015-12-31Gemfile: Remove unused and commented Evernote gemsTeddy Wing
These have been superseded by other gems.
2015-12-30Use updated 'kipcole9/evernote' gemTeddy Wing
Updated the gem to fix the `LoadError` I ran into (https://github.com/teddywing/evernote/commit/f10ec2efe2e2984109545e496f36067cb3707dd6). Change our `NotesController` code to use the updated gem now instead of the code we copied over directly into `services/evernote.rb`.
2015-12-30Include 'kipcole9/evernote' note_store.rb directlyTeddy Wing
Copy 'note_store.rb' from 'kipcole9/evernote' directly into my Evernote service file. I was getting a `LoadError` when trying to load the 'evernote' gem so to get moving quickly I'm just including the code directly in this app. We can figure out the issue with the gem later. Updating `NotesController` to interface with the 'evernote' gem classes and get notebooks using its API.
2015-12-30Add 'kipcole9/evernote' gemTeddy Wing
In searching for an easier way to interface with the Evernote SDK and to get all notes for a given notebook, I came across a wrapper gem for the Evernote Ruby SDK: https://github.com/cgs/evernote. The trouble is, this gem was last updated on June 15, 2012, and is likely out of date. Checked the GitHub Network tab to see if there were any forks a little farther along. Turns out kipcole9 has one that has some nice updates, and is the most recent of all the forks. Installing kipcole9's version to help me get some note data.
2015-12-30Add 'evernote-thrift' gemTeddy Wing
This is the main Evernote Ruby SDK. We'll be using it to get note information from Evernote's API.
2015-12-30Get rid of 'evernote-oauth' and install 'omniauth'Teddy Wing
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'.
2015-12-30Add 'evernote-oauth' gemTeddy Wing
For authentication with Evernote.
2015-12-30Initial commit. Base Rails 4.2.5 project.Teddy Wing