Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module MyLib
- module Configuration
- extend self
- attr_accessor :val
- end
- class << self
- def configure
- yield MyLib::Configuration if block_given?
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement