what is module extend self?

Today when I reading about rails source code found

module Dependencies
  extend self
end

Yes, I never saw this usage before, this actually is a efficient way to change all instance methods into class methods.

Reference: (http://ozmm.org/posts/singin_singletons.html)[http://ozmm.org/posts/singin_singletons.html]

blog comments powered by Disqus