# File lib/twitter/rest/tweets.rb, line 43
      def retweeters_of(tweet, options = {})
        ids_only = !!options.delete(:ids_only)
        retweeters = retweets(tweet, options).collect(&:user)
        ids_only ? retweeters.collect(&:id) : retweeters
      end