# File lib/twitter/client/lists.rb, line 509 def list_destroy(*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 = delete("/1/lists/destroy.json", options) Twitter::List.new(list) end