# File lib/evernote/client.rb, line 8 def initialize(klass, url, thrift_client_options = {}) thrift_opts = THRIFT_DEFAULTS.merge(thrift_client_options) @client = ThriftClient.new(klass, url, thrift_opts) end
# File lib/evernote/client.rb, line 13 def method_missing(name, *args, &block) @client.send(name, *args, &block) end