Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save hectorperez/4e08384c9ea22098039e to your computer and use it in GitHub Desktop.

Select an option

Save hectorperez/4e08384c9ea22098039e to your computer and use it in GitHub Desktop.
check if a class already exists in Ruby
def class?(class_name)
Kernel.const_defined?(class_name) && class_name.constantize.is_a?(Class)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment