Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. module Constants
  2. CONST1="value"
  3. CONST2="value2"
  4. end
  5.  
  6. module Constants
  7. module Group1
  8. CONST1="value"
  9. CONST2="value2"
  10. end
  11. module Group2
  12. # some relevant constants
  13. end
  14. end
  15.  
  16. module Constants
  17. module Foo
  18. extend self
  19.  
  20. BAR = 'bar'
  21. def bar
  22. BAR
  23. end
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement