Returns true or false randomly
# File lib/random_data/booleans.rb, line 5 def boolean rand(2) == 1 ? true : false end