Does anyone know why I get
undefined method `my_method\' for #
when I call my_method(\"string\") from withi
Try appending module_function(*instance_methods) in your helper modules, after which you could directly call those methods on the module itself.
module_function(*instance_methods)