mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
:nodoc: the "Deprecated" module
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
72592e35ae
commit
cb3cf6cfea
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jan 22 00:10:01 2004 Dave Thomas <dave@pragprog.com>
|
||||
|
||||
* lib/base64.rb: :nodoc: the Deprecated module
|
||||
|
||||
Wed Jan 21 23:52:39 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* configure.in: Interix(SFU) support.
|
||||
|
|
|
@ -29,4 +29,4 @@ test/unit.rb
|
|||
thread.rb
|
||||
thwait.rb
|
||||
time.rb
|
||||
yaml.rb
|
||||
yaml.rb
|
||||
|
|
|
@ -15,7 +15,7 @@ require "kconv"
|
|||
module Base64
|
||||
module_function
|
||||
|
||||
# Returns the Base64-decoded version of \obj{str}.
|
||||
# Returns the Base64-decoded version of _str_.
|
||||
#
|
||||
# require 'base64'
|
||||
# str = 'VGhpcyBpcyBsaW5lIG9uZQpUaGlzIG' +
|
||||
|
@ -85,7 +85,8 @@ module Base64
|
|||
end
|
||||
end
|
||||
|
||||
module Deprecated
|
||||
|
||||
module Deprecated # :nodoc:
|
||||
include Base64
|
||||
|
||||
def _deprecated_base64(*args)
|
||||
|
|
Loading…
Reference in a new issue