class Log4ever::EvernoteAuth
Attributes
auth_token[R]
note_store[R]
Public Class Methods
new(auth_token, is_sandbox = false)
click to toggle source
# File lib/log4r/evernote.rb, line 19 def initialize(auth_token, is_sandbox = false) @auth_token = auth_token @note_store = EvernoteOAuth::Client.new({ :token => auth_token, :sandbox => is_sandbox }).note_store end