M
Max Williams
At Scotland On Rails a few months ago, I was shown a nice way to put
class methods in a module, alongside instance methods, in such a way as
they will get added as class methods automatically, without any work
required on the part of the person including the module.
Unfortunately i failed to make a note of how to do this and i've since
forgotten. Can anyone show me?
It was something along these lines...(the following doesn't work btw)
module Mappable
#instance methods
def foo
"foo"
end
#class methods
class << self.class
def bar
"bar"
end
end
end
can anyone set me straight?
thanks
max
class methods in a module, alongside instance methods, in such a way as
they will get added as class methods automatically, without any work
required on the part of the person including the module.
Unfortunately i failed to make a note of how to do this and i've since
forgotten. Can anyone show me?
It was something along these lines...(the following doesn't work btw)
module Mappable
#instance methods
def foo
"foo"
end
#class methods
class << self.class
def bar
"bar"
end
end
end
can anyone set me straight?
thanks
max