Skip to content

Instantly share code, notes, and snippets.

@liwh
Created December 2, 2010 06:10
Show Gist options
  • Save liwh/724864 to your computer and use it in GitHub Desktop.
Save liwh/724864 to your computer and use it in GitHub Desktop.
#重构:实现为类动态增加方法
module A
def self.included(target)
target.extent(ClassMethods)
end
module ClassMethods
def ..
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment