cbruckmayer (Christian Bruckmayer)
- Login: cbruckmayer
- Registered on: 09/18/2018
- Last sign in: 09/18/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/18/2018
-
09:37 AM Ruby Bug #15135 (Closed): Refining #initialize method not working
- See the following example:
```
class C
def initialize(arg)
puts arg
end
end
module M
refine C do
def initialize(arg1, arg2)
puts arg1, arg2
end
end
end
using M
C.new("foo") # works
C.new("f...