instiki/app/models/author.rb

4 lines
98 B
Ruby
Raw Normal View History

class Author < String
attr_accessor :ip
def initialize(name, ip) @ip = ip; super(name) end
2005-01-15 21:26:54 +01:00
end