Skip to content

Instantly share code, notes, and snippets.

@jtzero
Last active February 25, 2019 05:08
Show Gist options
  • Save jtzero/e755851b3cbda7159470d681a957f9c5 to your computer and use it in GitHub Desktop.
Save jtzero/e755851b3cbda7159470d681a957f9c5 to your computer and use it in GitHub Desktop.
def const_source_location(const)
if method_name = const.instance_methods.sort.find {|m| const.instance_method(m).owner == const }
const.instance_method(method_name).source_location
else
raise "`#{const}' has no uninherited/mixed in instance methods"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment