I have a module which declares a number of instance methods
module UsefulThings def get_file; ... def delete_file; ... def forma
I think the shortest way to do just throw-away single call (without altering existing modules or creating new ones) would be as follows:
Class.new.extend(UsefulThings).get_file