| http://www.w3.org/ns/prov#value | - All too often, I found myself writing code like this:if !lead.address.nil? && !lead.address.empty?or this:if lead.contacts.nil? || lead.contacts.empty?In ruby everything is an object even Nil (null in .NETspeak) and everything is open for extension.
|