# File lib/twitter/client/lists.rb, line 30 def lists_subscribed_to(*args) options = args.last.is_a?(Hash) ? args.pop : {} if user = args.pop options.merge_user!(user) end get("/1/lists/all.json", options).map do |list| Twitter::List.new(list) end end