mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00
aamine
* lib/net/http.rb: add HTTPRequest#basic_auth. * lib/net/smtp.rb: raise if only account or password is given. * lib/net/protocol.rb: WriteAdapter#<< returns self. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e502549be1
commit
1a7cb01d64
4 changed files with 25 additions and 8 deletions
|
@ -504,7 +504,10 @@ module Net
|
|||
end
|
||||
|
||||
def self.get_print( addr, path, port = nil )
|
||||
print get( addr, path, port )
|
||||
new( addr, port || HTTP.port ).start {|http|
|
||||
http.get path, nil, $stdout
|
||||
}
|
||||
nil
|
||||
end
|
||||
|
||||
|
||||
|
@ -733,7 +736,7 @@ module Net
|
|||
end
|
||||
|
||||
def basic_auth( acc, pass )
|
||||
@header['authorization'] = ["#{acc}:#{pass}"].pack('m').gsub(/\s+/, '')
|
||||
@header['authorization'] = 'Basic ' + ["#{acc}:#{pass}"].pack('m').strip
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue