Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. module Test
  2. class << self
  3. attr_accessor :title
  4. end
  5.  
  6. class << self
  7. def configure
  8. yield self if block_given?
  9. end
  10. end
  11. end
  12.  
  13. Test.configure do |config|
  14. config.title = 'Yo!'
  15. end
  16.  
  17. puts Test.title
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement