Hi,
In message "newbie mixin question"
on 03/08/12, Michael Garriss <mgarriss / earthlink.net> writes:
|1) How can I mixin a class method (not an instance method)?
module Foo
def foo
p "foo"
end
end
class Bar
Bar.extend(Foo)
end
Bar.foo
matz.