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)
link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Here are set of methods for generating a random integer, amount, time/datetime within a range.

def rand_int(from, to)
  rand_in_range(from, to).to_i
end

def rand_price(from, to)
  rand_in_range(from, to).round(2)
end

def rand_time(from, to)
  Time.at(rand_in_range(from.to_f, to.to_f))
end

def rand_in_range(from, to)
  rand * (to - from) + from
end

Now you can make the following calls.

rand_int(60, 75)
# => 61

rand_price(10, 100)
# => 43.84

rand_time(2.days.ago, Time.now)
# => Mon Mar 08 21:11:56 -0800 2010
link|improve this answer
Awesome! thank you everyone! – JackCA Mar 9 '10 at 19:06
feedback

I prefer use (1..500).to_a.rand.days.ago

link|improve this answer
This code will throw syntax error (Range class doen't have the rand method) – KandadaBoggu Mar 9 '10 at 18:06
Yes you right. I change it. need call .to_a after range – shingara Mar 9 '10 at 18:15
And, you can use (-200..200).to_a.rand.days.ago to include future dates as well. Very useful for my seed data – Justus Romijn Apr 17 at 11:34
feedback

Here is how to create a date in the last 10 years:

rand(10.years).ago
link|improve this answer
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.

end = Time.now
start = (end - 1.week).to_i
random_date = Time.at(rand(end.to_i - start)) + start

Of course you end up with a Time object instead of a DateTime but I'm sure you can covert from here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.