Skip to content

Instantly share code, notes, and snippets.

@jozr
Last active July 30, 2018 14:12
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 jozr/f35b1c43eded33b5a3083707b0c45b71 to your computer and use it in GitHub Desktop.
Save jozr/f35b1c43eded33b5a3083707b0c45b71 to your computer and use it in GitHub Desktop.
def descendants_mapper(klass)
klass.subclasses.reduce({}) { |memo, subclass|
memo[subclass] = descendants_mapper(subclass); memo
}
end
{ MasterClass => descendants_mapper(MasterClass) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment