From 2782c3b97d7cff825f9070dad8d2454300910fd1 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 10 Jun 2025 12:14:40 +0900 Subject: [PATCH 1/3] [DOC] Fix `Base64.decode64` call-seq --- lib/base64.rb | 2 +- sig/base64.rbs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base64.rb b/lib/base64.rb index 8c0145d..aa781d1 100644 --- a/lib/base64.rb +++ b/lib/base64.rb @@ -224,7 +224,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+: diff --git a/sig/base64.rbs b/sig/base64.rbs index ee6783f..e72bee8 100644 --- a/sig/base64.rbs +++ b/sig/base64.rbs @@ -183,7 +183,7 @@ module Base64 # # Returns a string containing the decoding of an RFC-2045-compliant # Base64-encoded string `encoded_string`: From 0f585cc08ce8e84f1a4dbefcfc8fad3400dd8306 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 10 Jun 2025 12:15:15 +0900 Subject: [PATCH 2/3] [DOC] Document `Base64::VERSION` --- lib/base64.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base64.rb b/lib/base64.rb index aa781d1..c9cc471 100644 --- a/lib/base64.rb +++ b/lib/base64.rb @@ -183,6 +183,7 @@ # module Base64 + # The version of this module. VERSION = "0.3.0" module_function From 4f707ab2c275a160851724f276b2107eb9483e6e Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 10 Jun 2025 12:21:42 +0900 Subject: [PATCH 3/3] [DOC] Add .document --- .document | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .document diff --git a/.document b/.document new file mode 100644 index 0000000..74f565b --- /dev/null +++ b/.document @@ -0,0 +1,5 @@ +BSDL +COPYING +LEGAL +lib/base64.rb +README.md