# File lib/twitter/client/friends_and_followers.rb, line 213 def friendships(*args) options = args.last.is_a?(Hash) ? args.pop : {} users = args options.merge_users!(Array(users)) get("/1/friendships/lookup.json", options).map do |user| Twitter::User.new(user) end end