module Sass::Plugin

def template_locations

def template_locations
  location = (options[:template_location] || File.join(options[:css_location],'sass'))
  if location.is_a?(String)
    [location]
  else
    location.to_a.map { |l| l.first }
  end
end