Guest User

Untitled

a guest
Jan 22nd, 2018
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. module TheModule
  2. def self.included(ac)
  3. ac.send(:include, InstanceMethods)
  4. end
  5.  
  6. module InstanceMethods
  7. def method1
  8. end
  9. def method2
  10. end
  11. ...
  12. end
  13. end
  14.  
  15.  
  16. SomeClass.send(:include, TheModule)
Add Comment
Please, Sign In to add comment