<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Evernote-Rails-Example/config, 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>routes.rb: Remove unused (commented) route</title>
<updated>2015-12-31T09:24:29+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T09:24:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=6947d34d29ae8255cd882682a396a32794dd8350'/>
<id>6947d34d29ae8255cd882682a396a32794dd8350</id>
<content type='text'>
This was originally for the 'evernote_oauth' gem but we're no longer
using that one.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was originally for the 'evernote_oauth' gem but we're no longer
using that one.
</pre>
</div>
</content>
</entry>
<entry>
<title>routes.rb: Add route to notes index page</title>
<updated>2015-12-31T01:49:41+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:49:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=5bb7a76bb95baef84d96d33eb50034fe51cdc0e4'/>
<id>5bb7a76bb95baef84d96d33eb50034fe51cdc0e4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SessionsController: Add sample code provided by OmniAuth</title>
<updated>2015-12-31T01:45:28+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:38:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=122f68c5cec937953dab0d42d0a7a0fa656806d7'/>
<id>122f68c5cec937953dab0d42d0a7a0fa656806d7</id>
<content type='text'>
This is the sample callback code to get access to the OAuth auth hash.

A new route specifies that `SessionsController#create` should handle the
OAuth callback coming from Evernote.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the sample callback code to get access to the OAuth auth hash.

A new route specifies that `SessionsController#create` should handle the
OAuth callback coming from Evernote.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add OmniAuth middleware</title>
<updated>2015-12-31T01:45:28+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:34:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=cc524b311ae7b65bb788121d3b3777406bf25250'/>
<id>cc524b311ae7b65bb788121d3b3777406bf25250</id>
<content type='text'>
Add a call to initialise the Evernote provider specified by
'omniauth-evernote'.

Use the sandbox base URL.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a call to initialise the Evernote provider specified by
'omniauth-evernote'.

Use the sandbox base URL.
</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>routes.rb: Add route to Evernote auth controller method</title>
<updated>2015-12-31T01:45:28+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:23:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=5519e0fa377345b7f85a1f5c4f8eed2117931581'/>
<id>5519e0fa377345b7f85a1f5c4f8eed2117931581</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a link to login with Evernote on homepage</title>
<updated>2015-12-31T01:45:27+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:22:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=ccd50d7ced3417f39b7c6a98df372554ae6d2722'/>
<id>ccd50d7ced3417f39b7c6a98df372554ae6d2722</id>
<content type='text'>
* Add index method to HomeController
* Add root route to HomeController#index
* Add link on index page to `/auth/evernote`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add index method to HomeController
* Add root route to HomeController#index
* Add link on index page to `/auth/evernote`
</pre>
</div>
</content>
</entry>
<entry>
<title>Add config/evernote.yml</title>
<updated>2015-12-31T01:45:27+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-12-31T01:10:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Evernote-Rails-Example/commit/?id=36e766bdc495ac4943e04bb507c82a97e3a92b57'/>
<id>36e766bdc495ac4943e04bb507c82a97e3a92b57</id>
<content type='text'>
Add the config file needed by the 'evernote-oauth' gem as specified in
the gem's README to provide our API keys.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the config file needed by the 'evernote-oauth' gem as specified in
the gem's README to provide our API keys.
</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>
