# File lib/twitter/client/user.rb, line 114 def suggestions(*args) options = args.last.is_a?(Hash) ? args.pop : {} slug = args.first response = get([1, 'users', 'suggestions', slug].compact.join('/'), options) xml_key = slug ? 'category' : 'suggestions' format.to_s.downcase == 'xml' ? response[xml_key] : response end