Class: Time

Inherits:
Object
  • Object
show all
Defined in:
lib/page.rb

Class Method Summary collapse

Class Method Details

.randomObject



5
6
7
8
9
10
# File 'lib/page.rb', line 5

def self.random
  year = Time.now.year
  month = rand(12) + 1
  day = (rand * 28).ceil
  Time.local(year, month, day)
end