# File lib/twitter/httpauth.rb, line 8
    def initialize(username, password, options={})
      @username, @password = username, password
      @options = {:ssl => false}.merge(options)
      self.class.base_uri "http#{'s' if options[:ssl]}://twitter.com"
    end