Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. module MyLib
  2. module Configuration
  3. extend self
  4.  
  5. attr_accessor :val
  6. end
  7.  
  8. class << self
  9. def configure
  10. yield MyLib::Configuration if block_given?
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement