Best way to create random DateTime in Rails

前端 未结 12 1995
粉色の甜心
粉色の甜心 2020-12-22 23:49

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         


        
12条回答
  •  北海茫月
    2020-12-23 00:15

    My 'ish' gem provides a nice way of handling this:

    # plus/minus 5 min of input date
    Time.now.ish
    # override that time range like this
    Time.now.ish(:offset => 1.year)
    

    https://github.com/spilliton/ish

提交回复
热议问题