21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-01 15:15:06 +02:00
chexpire/app/services/whois/parser/entry/text.rb
2018-05-30 17:01:32 +02:00

17 lines
249 B
Ruby

require_relative "base"
module Whois
module Parser
module Entry
class Text < Base
attr_reader :text
def initialize(index, text)
super index
@text = text.strip
end
end
end
end
end