Guest User

Untitled

a guest
May 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. module MegaMenus
  2. module Editor
  3. #here we want a class method!
  4. def self.included(base)
  5. base.extend ClassMethods
  6. end
  7.  
  8. module ClassMethods
  9. def acts_as_menu
  10. self.send :extend, Aamcm
  11. end
  12. end
  13.  
  14. module Aamcm
  15. def check_menus
Add Comment
Please, Sign In to add comment