1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/openssl/lib/openssl/buffering.rb: define Buffering module under

OpenSSL.  [ruby-dev:37906]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-02-27 13:15:35 +00:00
parent 7f247b9d0c
commit a7d581fa2f
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Fri Feb 27 22:14:22 2009 Tanaka Akira <akr@fsij.org>
* ext/openssl/lib/openssl/buffering.rb: define Buffering module under
OpenSSL. [ruby-dev:37906]
Fri Feb 27 22:09:24 2009 Tanaka Akira <akr@fsij.org>
* lib/test/unit/assertions.rb: don't define assert_not_* if already

View file

@ -14,6 +14,7 @@
$Id$
=end
module OpenSSL
module Buffering
include Enumerable
attr_accessor :sync
@ -261,3 +262,4 @@ module Buffering
sysclose
end
end
end