# File lib/twitter/client/list.rb, line 219 def list_timeline(*args) options = args.last.is_a?(Hash) ? args.pop : {} list = args.pop user = args.pop || get_screen_name merge_list_into_options!(list, options) merge_owner_into_options!(user, options) response = get("1/lists/statuses", options) format.to_s.downcase == 'xml' ? response['statuses'] : response end