Created
February 1, 2020 08:31
-
-
Save cutalion/a1b55c22b2c36f56403cb7fd48986f28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Initializer | |
def initialize | |
puts 'Initializer#initialize' | |
super | |
end | |
end | |
class Klass | |
prepend Initializer | |
def initialize | |
puts 'Klass#initialize' | |
end | |
end | |
Klass.new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment