# File lib/twitter/client/users.rb, line 170
      def contributors(*args)
        options = {}
        options.merge!(args.last.is_a?(Hash) ? args.pop : {})
        user = args.pop || self.current_user.screen_name
        options.merge_user!(user)
        get("/1/users/contributors.json", options).map do |user|
          Twitter::User.new(user)
        end
      end