Skip to content

Instantly share code, notes, and snippets.

@pmenglund
Created February 9, 2011 17:38
Show Gist options
  • Save pmenglund/818869 to your computer and use it in GitHub Desktop.
Save pmenglund/818869 to your computer and use it in GitHub Desktop.
def check(conf, what)
if c = conf[what]
if block_given?
yield c
else
false
end
else
puts "missing: #{what}"
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment