include vs extend

Category:

include

Adds instance methods of the module to the class as instance methods of that class.

extend

Adds instance methods of the module to the class as class methods of that class.


So it is only about instance methods of the module.