# File lib/compass/sass_extensions/functions/enumerate.rb, line 2 def enumerate(prefix, from, through, separator = "-") selectors = (from.value..through.value).map{|i| "#{prefix.value}#{separator}#{i}"}.join(", ") Sass::Script::String.new(selectors) end