Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract bigdecimal as bundled gems #9573

Merged
merged 9 commits into from
Jan 17, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/maintainers.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,6 @@ have commit right, others don't.
* https://rubygems.org/gems/weakref

### Extensions
#### ext/bigdecimal
* Kenta Murata (mrkn) https://github.com/ruby/bigdecimal
* https://rubygems.org/gems/bigdecimal

#### ext/cgi
* Nobuyoshi Nakada (nobu)
Expand Down Expand Up @@ -481,6 +478,9 @@ have commit right, others don't.
#### lib/base64.rb
* https://github.com/ruby/base64

#### ext/bigdecimal
* https://rubygems.org/gems/bigdecimal

## Platform Maintainers
### mswin64 (Microsoft Windows)
* NAKAMURA Usaku (usa)
Expand Down
2 changes: 1 addition & 1 deletion doc/standard_library.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ WeakRef:: Allows a referenced object to be garbage-collected

== Extensions

BigDecimal:: Provides arbitrary-precision floating point decimal arithmetic
Date:: A subclass of Object includes Comparable module for handling dates
DateTime:: Subclass of Date to handling dates, hours, minutes, seconds, offsets
Digest:: Provides a framework for message digest libraries
Expand Down Expand Up @@ -130,3 +129,4 @@ Racc:: A LALR(1) parser generator written in Ruby.
Mutex_m:: Mixin to extend objects to be handled like a Mutex
GetoptLong:: Parse command line options similar to the GNU C getopt_long()
Base64:: Support for encoding and decoding binary data using a Base64 representation
BigDecimal:: Provides arbitrary-precision floating point decimal arithmetic