<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Evernote-Rails-Example/Gemfile, branch master</title>
<subtitle>An example of how to set up an OAuth connection and make API requests to Evernote from within a Rails application</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/'/>
<entry>
<title>Gemfile: Remove unused and commented Evernote gems</title>
<updated>2015-12-31T09:23:17+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T09:22:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=08d1a7022ac38829afa7f04e6df4f3cfe91f468d'/>
<id>08d1a7022ac38829afa7f04e6df4f3cfe91f468d</id>
<content type='text'>
These have been superseded by other gems.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These have been superseded by other gems.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use updated 'kipcole9/evernote' gem</title>
<updated>2015-12-31T02:51:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T02:51:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=38785ce06a484cae08efbdf9d7c7c980c87eb9db'/>
<id>38785ce06a484cae08efbdf9d7c7c980c87eb9db</id>
<content type='text'>
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`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Include 'kipcole9/evernote' note_store.rb directly</title>
<updated>2015-12-31T02:41:49+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T02:41:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=e129dc5b3f70005e8b33a62f66e673a9c0d8084c'/>
<id>e129dc5b3f70005e8b33a62f66e673a9c0d8084c</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'kipcole9/evernote' gem</title>
<updated>2015-12-31T02:18:46+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T02:18:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=a929a40eaad93135ff5c8fea254df03cdd26962e'/>
<id>a929a40eaad93135ff5c8fea254df03cdd26962e</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'evernote-thrift' gem</title>
<updated>2015-12-31T01:52:31+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:52:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=21e6572e9dd2ec3df6a0b9de877c09dd376ee282'/>
<id>21e6572e9dd2ec3df6a0b9de877c09dd376ee282</id>
<content type='text'>
This is the main Evernote Ruby SDK. We'll be using it to get note
information from Evernote's API.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the main Evernote Ruby SDK. We'll be using it to get note
information from Evernote's API.
</pre>
</div>
</content>
</entry>
<entry>
<title>Get rid of 'evernote-oauth' and install 'omniauth'</title>
<updated>2015-12-31T01:45:28+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:30:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9'/>
<id>2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9</id>
<content type='text'>
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'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'evernote-oauth' gem</title>
<updated>2015-12-31T01:45:27+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:09:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=a701bc329da6ccd076538f93eb011b269531eaa2'/>
<id>a701bc329da6ccd076538f93eb011b269531eaa2</id>
<content type='text'>
For authentication with Evernote.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For authentication with Evernote.
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial commit. Base Rails 4.2.5 project.</title>
<updated>2015-12-31T01:45:24+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T00:58:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=6674d1f2f5ec395f90d958001dce4a20cdad7879'/>
<id>6674d1f2f5ec395f90d958001dce4a20cdad7879</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
