# File lib/typhoeus/easy.rb, line 213
    def request_body=(request_body)
      @request_body = request_body
      if @method == :put
        easy_set_request_body(@request_body.to_s)
      else
        self.post_data = request_body
      end
    end