Skip to content

Instantly share code, notes, and snippets.

@iseth
Created November 24, 2022 08:53
Show Gist options
  • Save iseth/5a10229bb7ae96cf8add71ec64ec288c to your computer and use it in GitHub Desktop.
Save iseth/5a10229bb7ae96cf8add71ec64ec288c to your computer and use it in GitHub Desktop.
General Ruby Lang Tips πŸ“

Tips on ruby language helpers with examples

{{Class}}.included_modules

Want to see all included modules in a ruby class?

module Example
  def hello
    puts "hello"
  end
end

class A
  include Example
end

class B
  include Example
end

p A.included_modules # => [Example, Kernel]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment