# File lib/spring/env.rb, line 35
    def tmp_path
      path = Pathname.new(
        ENV["SPRING_TMP_PATH"] ||
          File.join(ENV['XDG_RUNTIME_DIR'] || Dir.tmpdir, "spring-#{Process.uid}")
      )
      FileUtils.mkdir_p(path) unless path.exist?
      path
    end