jmanian (Jeff Manian)
- Login: jmanian
- Registered on: 08/10/2017
- Last sign in: 08/10/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/10/2017
-
05:27 PM Ruby Bug #13800 (Rejected): Possible regression of Object#method in Ruby 2.3+ for aliases
- The behavior of `Object#method` changed in 2.3 when using it to compare aliases. The change is best illustrated below:
~~~ ruby
module Foo
def foo
end
alias_method :foo_foo, :foo
end
class Bar
include Foo
alias_met...