# File lib/twitter/base.rb, line 159
    def post(status, options={})
      form_data = {'status' => status}
      form_data.merge({'source' => options[:source]}) if options[:source]
      Status.new_from_xml(request('statuses/update.xml', :auth => true, :method => :post, :form_data => form_data))
    end