Sha256: 5713621b4de6b4c55761a6a50022ab4e32b7724ff29365ca0f17f148eee94a6c
Contents?: true
Size: 962 Bytes
Versions: 4
Compression:
Stored size: 962 Bytes
Contents
# typed: strict # frozen_string_literal: true class GitAttributes class << self extend T::Sig sig { params(path: Pathname).void } def create_generated_attribute_file(path) create_gitattributes_file(path, <<~CONTENT) **/*.rbi linguist-generated=true CONTENT end sig { params(path: Pathname).void } def create_vendored_attribute_file(path) create_gitattributes_file(path, <<~CONTENT) **/*.rbi linguist-vendored=true CONTENT end private sig { params(path: Pathname, content: String).void } def create_gitattributes_file(path, content) # We don't want to start creating folders, just to write # the `.gitattributes` file. So, if the folder doesn't # exist, we just return. return unless path.exist? git_attributes_path = path.join(".gitattributes") File.write(git_attributes_path, content) unless git_attributes_path.exist? end end end
Version data entries
4 entries across 4 versions & 1 rubygems