instiki/app/models/author.rb
2005-01-15 20:26:54 +00:00

4 lines
101 B
Ruby
Executable file

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