Formato de fechas en Ruby

Para cuando trabajamos con fechas:   time = Time.now # => Thu Jan 18 06:10:17 CST 2015 time.to_formatted_s(:time) # => "06:10" time.to_s(:time) # => "06:10" time.to_formatted_s(:db) # => "2015-01-18 06:10:17" time.to_formatted_s(:number)…