diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-27 13:15:35 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-27 13:15:35 +0000 |
| commit | 01602e69f322ca9b97ef2d8321997b1d47a85252 (patch) | |
| tree | d96c614a955067b1449e2bcad12a6d6b50574aca | |
| parent | ea0e2f7a1f154b5dfb768b2e206aca5ac890e46b (diff) | |
| download | ruby-01602e69f322ca9b97ef2d8321997b1d47a85252.tar.gz ruby-01602e69f322ca9b97ef2d8321997b1d47a85252.tar.xz ruby-01602e69f322ca9b97ef2d8321997b1d47a85252.zip | |
* ext/openssl/lib/openssl/buffering.rb: define Buffering module under
OpenSSL. [ruby-dev:37906]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/openssl/lib/openssl/buffering.rb | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -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 diff --git a/ext/openssl/lib/openssl/buffering.rb b/ext/openssl/lib/openssl/buffering.rb index 095ab248c..10d7b9d3b 100644 --- a/ext/openssl/lib/openssl/buffering.rb +++ b/ext/openssl/lib/openssl/buffering.rb @@ -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 |
