What is the best way to generate a random DateTime in Ruby/Rails? Trying to create a nice seeds.rb file. Going to use it like so:
Foo.create(name: Faker::Lo
This is what I use:
# get random DateTime in last 3 weeks DateTime.now - (rand * 21)