Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .document
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
BSDL
COPYING
LEGAL
lib/base64.rb
README.md
3 changes: 2 additions & 1 deletion lib/base64.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
#
module Base64

# The version of this module.
VERSION = "0.3.0"

module_function
Expand Down Expand Up @@ -224,7 +225,7 @@ def encode64(bin)
end

# :call-seq:
# Base64.decode(encoded_string) -> decoded_string
# Base64.decode64(encoded_string) -> decoded_string
#
# Returns a string containing the decoding of an RFC-2045-compliant
# \Base64-encoded string +encoded_string+:
Expand Down
2 changes: 1 addition & 1 deletion sig/base64.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
module Base64
# <!--
# rdoc-file=lib/base64.rb
# - Base64.decode(encoded_string) -> decoded_string
# - Base64.decode64(encoded_string) -> decoded_string
# -->
# Returns a string containing the decoding of an RFC-2045-compliant
# Base64-encoded string `encoded_string`:
Expand Down