# File lib/sass/rails/importer.rb, line 12
        def find_relative(name, base, options)
          if options[:sprockets] && m = name.match(GLOB)
            path = name.sub(m[0], "")
            base = File.expand_path(path, File.dirname(base))
            glob_imports(base, m[2], options)
          else
            super
          end
        end