module Iremix class User class << self def current(token) response = token.get('/api/v1/people/current.json', :params => { :access_token => token.token }) response.parsed end end end end