Skip to content

Instantly share code, notes, and snippets.

@rondale-sc
Created May 28, 2013 23:16
Show Gist options
  • Save rondale-sc/5666880 to your computer and use it in GitHub Desktop.
Save rondale-sc/5666880 to your computer and use it in GitHub Desktop.
def visible?(klass, name)
true if klass.public_instance_methods.any? { |m| m.to_s == name } || klass.public_class_methods.any? {|m| m.to_s == name }
end
private :visible?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment