Sha256: e23598ae60031a175374bc7708afc2935714e45d8b3b66ab52e6f3014abdd0d9
Contents?: true
Size: 528 Bytes
Versions: 4
Compression:
Stored size: 528 Bytes
Contents
module Gem module RequirePathsBuilder def write_require_paths_file_if_needed(spec = @spec, gem_home = @gem_home) return if spec.require_paths == ["lib"] && (spec.bindir.nil? || spec.bindir == "bin") file_name = File.join(gem_home, 'gems', "#{@spec.full_name}", ".require_paths") file_name.untaint File.open(file_name, "w") do |file| spec.require_paths.each do |path| file.puts path end file.puts spec.bindir if spec.bindir end end end end
Version data entries
4 entries across 4 versions & 1 rubygems