instiki/app/models-old/author.rb
2005-08-02 07:59:22 +00:00

4 lines
98 B
Ruby

class Author < String
attr_accessor :ip
def initialize(name, ip) @ip = ip; super(name) end
end