natton (Tien Truong)
- Login: natton
- Registered on: 09/05/2024
- Last sign in: 04/13/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/22/2024
-
01:51 AM Ruby Bug #20716: Different instance_method behavior in Ruby 2.7 and Ruby 3.x
- Yes, thank you for the fix.
10/16/2024
-
04:17 AM Ruby Bug #20716: Different instance_method behavior in Ruby 2.7 and Ruby 3.x
- Hi Evans,
I am sorry for my late response.
Is there a way to backport this fix to Ruby version 3.1 and 3.2
09/10/2024
-
02:46 PM Ruby Bug #20716: Different instance_method behavior in Ruby 2.7 and Ruby 3.x
- Hi Evans,
Thank you for your guidance and the quick fix.
I truly appreciate it
09/09/2024
-
02:39 AM Ruby Bug #20716: Different instance_method behavior in Ruby 2.7 and Ruby 3.x
- Hi Evans,
Thank you for your confirmation.
I am new here so is there anything I can do to escalate this or how can I help to resolve this issue?
09/06/2024
-
03:42 AM Ruby Bug #20716: Different instance_method behavior in Ruby 2.7 and Ruby 3.x
- Yes, you are correct. This isn't specific to `define_method`. I modified the snippet a little bit
```
module A
def test(*args)
super
end
end
module B
def test(a)
puts a
end
end
B.prepend(A)
class C
i... -
02:04 AM Ruby Bug #20716 (Closed): Different instance_method behavior in Ruby 2.7 and Ruby 3.x
- Hi, I am working on upgrading our project from 2.7 to 3.x and found a breaking change in `instance_method` behavior.
Here is the code snippet
```
module A
def test(*args)
super
end
end
module B
def test(a)
puts ...