# File lib/twitter/client/friends_and_followers.rb, line 167
      def follow(user, options={})
        options.merge_user!(user)
        # Twitter always turns on notifications if the "follow" option is present, even if it's set to false
        # so only send follow if it's true
        options.merge!(:follow => true) if options.delete(:follow)
        user = post("/1/friendships/create.json", options)
        Twitter::User.new(user)
      end