Guest User

Untitled

a guest
Feb 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. module UserConcerns
  2.  
  3. module ControllerMethods ; end
  4.  
  5. module ModelMethods
  6.  
  7. def self.included(receiver)
  8. receiver.extend ClassMethods
  9. receiver.send :include, InstanceMethods
  10. end
  11.  
  12. module ClassMethods ; end
  13. module InstanceMethods ; end
  14.  
  15. end
  16.  
  17. module TestMethods ; end
  18.  
  19. end
Add Comment
Please, Sign In to add comment