[#99115] [Ruby master Bug#17023] How to prevent String memory to be relocated in ruby-ffi — larskanis@...
Issue #17023 has been reported by larskanis (Lars Kanis).
22 messages
2020/07/10
[#99375] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings — merch-redmine@...
Issue #17055 has been reported by jeremyevans0 (Jeremy Evans).
29 messages
2020/07/28
[#101207] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— merch-redmine@...
2020/12/02
Issue #17055 has been updated by jeremyevans0 (Jeremy Evans).
[#101231] Re: [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— Austin Ziegler <halostatue@...>
2020/12/03
What does this mean?
[ruby-core:99318] [Ruby master Bug#17025] `Time#ceil` does not work like `Rational#ceil` or `Float#ceil`
From:
merch-redmine@...
Date:
2020-07-24 22:59:49 UTC
List:
ruby-core #99318
Issue #17025 has been updated by jeremyevans0 (Jeremy Evans). I've added a pull request to fix this: https://github.com/ruby/ruby/pull/3362 ---------------------------------------- Bug #17025: `Time#ceil` does not work like `Rational#ceil` or `Float#ceil` https://bugs.ruby-lang.org/issues/17025#change-86713 * Author: tgxworld (Guo Xiang Tan) * Status: Open * Priority: Normal * ruby -v: ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x86_64-linux] * Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN ---------------------------------------- ## Current behavior ``` irb(main):011:0> time = Time.utc(2016, 4, 23, 0, 0, "0.123456789".to_r) irb(main):012:0> time.ceil(9) => 2016-04-23 00:00:00.12345679 UTC irb(main):013:0> time.ceil(10) => 2016-04-23 00:00:00 1234567891/10000000000 UTC irb(main):014:0> time.ceil(11) => 2016-04-23 00:00:00 12345678901/100000000000 UTC irb(main):015:0> "0.123456789".to_r.ceil(9) => (123456789/1000000000) irb(main):016:0> "0.123456789".to_f.ceil(9) => 0.123456789 ``` ## Expected Behavior ``` irb(main):011:0> time = Time.utc(2016, 4, 23, 0, 0, "0.123456789".to_r) irb(main):012:0> time.ceil(9) => 2016-04-23 00:00:00.123456789 UTC irb(main):012:0> time.ceil(10) => 2016-04-23 00:00:00.123456789 UTC irb(main):012:0> time.ceil(11) => 2016-04-23 00:00:00.123456789 UTC ``` -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>