Sha256: 9c972a286384cadda54affade0c0dab5d57e1aa0cb8ce48f1af77eb495e777d5
Contents?: true
Size: 329 Bytes
Versions: 24
Compression:
Stored size: 329 Bytes
Contents
# encoding: utf-8 module Punchblock class URIList < SimpleDelegator def self.import(string) new string.strip.split("\n").map(&:strip) end def initialize(*list) super list.flatten end def to_s join("\n") end def ==(other) self.__getobj__ == other.to_ary end end end
Version data entries
24 entries across 24 versions & 1 rubygems