In Javascript I could do this.
var a = {};
a.f1 = function(){};
How can I do this in Ruby?
Update.
In JS code, a is an object instantiated without class. And function(){} is an anonymous function, and a.f1 = adds the function to the object instance. So the function is bound to the instance only, and nothing is related to the class or similar definitions.