lib/redd/client/authenticated/account.rb in redd-0.1.0 vs lib/redd/client/authenticated/account.rb in redd-0.1.1
- old
+ new
@@ -1,9 +1,14 @@
module Redd
module Client
- class Authenticated
- module Accounts
-
+ class Authenticated
+ module Account
+ def me
+ meth = :get
+ path = "/api/me.json"
+
+ object_from_response(meth, path)
+ end
end
end
end
end