summaryrefslogtreecommitdiffstats
path: root/lib/evernote/client.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/evernote/client.rb')
-rw-r--r--lib/evernote/client.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/evernote/client.rb b/lib/evernote/client.rb
index e6962dc..1522d59 100644
--- a/lib/evernote/client.rb
+++ b/lib/evernote/client.rb
@@ -1,7 +1,6 @@
-require 'forwardable'
-
module Evernote
class Client
+ attr_reader :client
THRIFT_DEFAULTS = {
:transport => Thrift::HTTPClientTransport
@@ -11,9 +10,5 @@ module Evernote
thrift_opts = THRIFT_DEFAULTS.merge(thrift_client_options)
@client = ThriftClient.new(klass, url, thrift_opts)
end
-
- def method_missing(name, *args, &block)
- @client.send(name, *args, &block)
- end
end
end