module Caramelize class Page attr_accessor :title, :body, :id, :markup, :latest, :time, :message, :author, :author_name def initialize page={} @id = page[:id] @title = page[:title] ? page[:title] : "" @body = page[:body] ? page[:body] : "" @syntax = page[:markup] @latest = page[:latest] ? page[:latest] : false @time = page[:time] ? page[:time] : Time.now @message = page[:message] ? page[:message] : "" @author = page[:author] @author_name = page[:author_name] end def latest? @latest end def set_latest @latest = true end def to_s @title end end end