Добавьте поле под названием time в ваши статьи:
title: The Wonderful Wizard of Oz
author: Lyman Frank Baum
date: 1900/05/17
time: 12:30:00 PST
Dorothy lived in the midst of the great Kansas prairies, with Uncle Henry,
who was a farmer, and Aunt Em, who was the farmer's wife.
Обезьяна исправляет класс Article перед блоком сервера:
require 'time'
class Article
def timestamp
self[:timestamp] ||= Time.parse("#{self[:date].strftime("%Y-%m-%d")} #{self[:time]}")
end
end
toto = Toto::Server.new do
Теперь в вашем макете вы можете использовать метод timestamp
для сортировки:
<% articles.select {|a| a.timestamp <= Time.now}[0..4].each do |article| %>