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::Lorem.words, description: Faker::Lorem.sentence, start_date: Random.date)
|
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:
| ||||
|
feedback
|
|
Here are set of methods for generating a random integer, amount, time/datetime within a range.
Now you can make the following calls.
| |||
|
feedback
|
|
I prefer use | |||||||
feedback
|
|
I haven't tried this myself but you could create a random integer between two dates using the number of seconds since epoch. For example, to get a random date for the last week.
Of course you end up with a Time object instead of a DateTime but I'm sure you can covert from here. | |||
|
feedback
|