Jonathan Hefner 6061003100 [ruby/delegate] Fix DelegateClass block "method redefined" warning
This commit prevents "method redefined" warnings when overriding methods
within a `DelegateClass` block, such as in the following example:

  ```ruby
  Base = Class.new do
    def foo
      "foo"
    end
  end

  Overridden = DelegateClass(Base) do
    def foo
      super + "!"
    end
  end
  ```

Fixes https://bugs.ruby-lang.org/issues/19047.

https://github.com/ruby/delegate/commit/214fae86de
2022-10-15 00:08:44 +09:00
..
2022-10-07 12:12:09 +09:00
2022-09-22 22:28:38 +09:00
2022-09-06 10:41:20 +09:00
2022-10-13 16:24:53 +09:00
2022-09-05 14:37:12 +09:00
2022-09-22 17:29:55 +09:00
2022-04-01 00:18:36 +09:00
2022-09-01 16:36:16 +09:00
2022-08-09 12:05:19 +09:00
2022-08-19 10:02:24 +09:00
2022-07-14 16:26:47 +09:00
2022-04-22 11:59:54 +09:00