diff options
| author | Teddy Wing | 2015-12-30 18:18:46 -0800 |
|---|---|---|
| committer | Teddy Wing | 2015-12-30 18:18:46 -0800 |
| commit | a929a40eaad93135ff5c8fea254df03cdd26962e (patch) | |
| tree | 8174c5b582290aff1e87cc010cabd8ab2c759b49 | |
| parent | d5407a3c9af0002b2290d96da7593dee98dcb6c4 (diff) | |
| download | Evernote-Rails-Example-a929a40eaad93135ff5c8fea254df03cdd26962e.tar.bz2 | |
Add 'kipcole9/evernote' gem
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.
| -rw-r--r-- | Gemfile | 2 | ||||
| -rw-r--r-- | Gemfile.lock | 12 |
2 files changed, 14 insertions, 0 deletions
@@ -39,6 +39,8 @@ gem 'omniauth-evernote' gem 'evernote-thrift' +gem 'evernote', '1.3.0', :github => 'kipcole9/evernote' + group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' diff --git a/Gemfile.lock b/Gemfile.lock index 5d9f4fe..bf6ddb7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,3 +1,11 @@ +GIT + remote: git://github.com/kipcole9/evernote.git + revision: 6395982f491e1278ee9cfdea5de006e229d25347 + specs: + evernote (1.3.0) + activesupport + thrift_client (>= 0.9.1) + GEM remote: https://rubygems.org/ specs: @@ -137,6 +145,9 @@ GEM sqlite3 (1.3.11) thor (0.19.1) thread_safe (0.3.5) + thrift (0.9.3.0) + thrift_client (0.9.3) + thrift (~> 0.9.0) tilt (2.0.1) turbolinks (2.5.3) coffee-rails @@ -157,6 +168,7 @@ PLATFORMS DEPENDENCIES byebug coffee-rails (~> 4.1.0) + evernote (= 1.3.0)! evernote-thrift jbuilder (~> 2.0) jquery-rails |
