In short: you need to extend instead of include the module.
class MyApp
extend MyModule
self.hallo
end
include provides instance methods for the class that mixes it in.
extend provides class methods for the class that mixes it in.
Give this a read.