Skip to content

Instantly share code, notes, and snippets.

@violarium
Created September 25, 2015 07:54
Show Gist options
  • Save violarium/4602812dd3102636518b to your computer and use it in GitHub Desktop.
Save violarium/4602812dd3102636518b to your computer and use it in GitHub Desktop.
module MyModule
end
class MyClass
include MyModule
end
puts MyClass.is_a? MyModule # => false
puts MyClass.new.is_a? MyModule # => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment