Sha256: 5066ce331e6f699b36071a9889257d67a8587af85e4dfad0fcc7115605f5d25e
Contents?: true
Size: 259 Bytes
Versions: 13
Compression:
Stored size: 259 Bytes
Contents
module Shinmun class Comment attr_accessor :time, :name, :email, :website, :text def initialize(attributes) for k, v in attributes send("#{k}=", v) if respond_to?("#{k}=") end self.time ||= Time.now end end end
Version data entries
13 entries across 13 versions & 1 rubygems