10 11 12 13 14 15 16
# File 'lib/aspen/list.rb', line 10 def self.from_text(text) new text. gsub(REGEX, ', '). split(','). map(&:strip) end