faucct (Nikita Sokolov)
- Login: faucct
- Registered on: 07/18/2016
- Last sign in: 09/15/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/18/2016
-
02:38 PM Ruby Bug #12594 (Closed): The class does not inherit from a module the modules that were included after the inclusion
- Reproduced in ruby 2.3.0 and 2.3.1
You can see that the result changes if I swap places `LimitedPeriod.include Period` and `Period.include Serialization`.
~~~ ruby
module Serialization
end
module Period
end
Period.include Se...