* lib/net/http/backward.rb (class Net): Restored Net::HTTPSession to

fix backwards-compatibility with ancient Net::HTTP.  [Bug #6889]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2012-08-23 22:42:12 +00:00
Родитель ba475e4415
Коммит d212a89c38
2 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Fri Aug 24 07:35:24 2012 Eric Hodel <drbrain@segment7.net>
* lib/net/http/backward.rb (class Net): Restored Net::HTTPSession to
fix backwards-compatibility with ancient Net::HTTP. [Bug #6889]
Thu Aug 23 20:58:55 2012 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* common.mk: support `make id.h` without `rm .id.h.time` after

Просмотреть файл

@ -4,7 +4,10 @@
class Net::HTTP
ProxyMod = ProxyDelta
HTTPSession = self
end
module Net
HTTPSession = Net::HTTP
end
module Net::NetPrivate