# File lib/sprockets/sass/importer.rb, line 86 def resolve_glob(context, glob, base_path) base_path = Pathname.new(base_path) path_with_glob = base_path.dirname.join(glob).to_s Pathname.glob(path_with_glob).sort.select do |path| path != context.pathname && context.asset_requirable?(path) end end