Skip to content

Instantly share code, notes, and snippets.

@cutalion
Created February 1, 2020 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cutalion/a1b55c22b2c36f56403cb7fd48986f28 to your computer and use it in GitHub Desktop.
Save cutalion/a1b55c22b2c36f56403cb7fd48986f28 to your computer and use it in GitHub Desktop.
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