I know I\'m doing something stupid or failing to do something intelligent - I\'m frequently guilty of both.
Here\'s an example of what\'s causing me pain:
I have
You can't call a method in a Module directly. You need to include it in a class. Try this:
>> class MyTest >> include TestFunctions >> end => MyTest >> MyTest.new.abc 123 => nil