Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created September 22, 2020 10:01
Show Gist options
  • Save mostlyobvious/ee7637c3a0ecea970bf94ffdee6681d0 to your computer and use it in GitHub Desktop.
Save mostlyobvious/ee7637c3a0ecea970bf94ffdee6681d0 to your computer and use it in GitHub Desktop.
module Xyz
def self.some_module
Module.new do
# ...
end
end
def self.included(klass)
# klass.include(some_module)
klass.include(self)
end
end
class Abc
include Xyz
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment