# File lib/twitter/client/lists.rb, line 631 def list(*args) options = args.last.is_a?(Hash) ? args.pop : {} list = args.pop options.merge_list!(list) owner = args.pop || self.current_user.screen_name options.merge_owner!(owner) list = get("/1/lists/show.json", options) Twitter::List.new(list) end