I have a module which declares a number of instance methods
module UsefulThings def get_file; ... def delete_file; ... def forma
Another way to do it if you "own" the module is to use module_function.
module_function
module UsefulThings def a puts "aaay" end module_function :a def b puts "beee" end end def test UsefulThings.a UsefulThings.b # Fails! Not a module method end test