Guest User

Untitled

a guest
Jul 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def check(conf, what)
  2. if c = conf[what]
  3. if block_given?
  4. yield c
  5. else
  6. false
  7. end
  8. else
  9. puts "missing: #{what}"
  10. true
  11. end
  12. end
Add Comment
Please, Sign In to add comment