# File lib/sprockets/secretary.rb, line 66
      def expand_paths(paths, options = {})
        if options.has_key?(:expand_paths) ? options[:expand_paths] : @options[:expand_paths]
          paths.map { |path| Dir[from_root(path)].sort }.flatten.compact
        else
          paths.map { |path| from_root(path) }
        end
      end