store classes inside modules.
module Mathematics class Adder def Adder.add(operand_one, operand_two) return operand_one + operand_two end end end