# File lib/httpauth/basic.rb, line 71 def pack_authorization(username, password) "Basic %s" % Base64.encode64("#{username}:#{password}").gsub("\n", '') end