| Age | Commit message (Collapse) | Author |
|
These have been superseded by other gems.
|
|
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`.
|
|
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.
|
|
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.
|
|
This is the main Evernote Ruby SDK. We'll be using it to get note
information from Evernote's API.
|
|
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'.
|
|
For authentication with Evernote.
|
|
|