Skip to content

Instantly share code, notes, and snippets.

@gee-forr
gee-forr / challenge_years_months.rb
Created June 27, 2011 10:36
challenge_years_months.rb
#!/usr/bin/env ruby
# encoding: UTF-8
TIME_ZERO = Time.gm(0)
ages_to_test = [979000000, 2158493738, 246144023, 1270166272, 1025600095]
def seconds_to_dt (seconds = 0) # Give it a sane default
age = TIME_ZERO + seconds.to_i
end