class Nokogiri::CSS::Node

def to_a

Convert to array
def to_a
  [@type] + @value.map { |n| n.respond_to?(:to_a) ? n.to_a : [n] }
end