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]