-
Notifications
You must be signed in to change notification settings - Fork 318
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
Random::DEFAULT is deprecated since 3.0.0 #2487
Conversation
refm/api/src/_builtin/Random
Outdated
@@ -353,9 +353,21 @@ C言語レベルで定義されている構造体MTの静的変数default_rand | |||
|
|||
--- DEFAULT -> Random | |||
|
|||
#@since 3.0.0 | |||
Ruby 3.0.0 から非推奨です。代わりに Random クラスオブジェクトを使ってください。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#2118
非推奨になったことは古いバージョンのドキュメントでも明示しておきたいと思っているのですが、どうでしょうか?
サンプルコードなど詳細な説明は3.0から表示しつつ、非表示になった事実は2.xでも表示すると良いのかなと思っています
@@ -353,9 +353,21 @@ C言語レベルで定義されている構造体MTの静的変数default_rand | |||
|
|||
--- DEFAULT -> Random |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この行も3.0からは変更したほうが良さそうです。 ただ、"Random クラスオブジェクト" を書く方法があるのかちょっとわかりませんでした…。 -> Class
と書いて文章で補足するのが良いかな🤔
よい記法を知っていたら誰か教えてほしいです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
78df158 で -> Class
に修正しました。クラスオブジェクトを書く方法は見つけられなかったです 😓
Random::DEFAULT は Randomクラスオブジェクトを返すようになったため、本文中のリンクを修正した。 see also はまだ削除しなくてもよいかと思ったため修正しなかった
- リンクが誤っていたため修正 - Random クラスオブジェクトを使うことを明記
合わせて see also の |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
遅くなりました 🙏
Random::DEFAULT
は Ruby 3.0.0 から非推奨になり、Random
クラスオブジェクトを返すようになりました。ref:
プロと読み解く Ruby 3.0 NEWS - クックパッド開発者ブログ
https://bugs.ruby-lang.org/issues/17322
https://bugs.ruby-lang.org/issues/17351
#2458