Use more inclusive language

Committed via https://github.com/asottile/all-repos
This commit is contained in:
Anthony Sottile 2021-05-14 19:11:05 -07:00
parent 2c28197c2a
commit 3922263f8c
11 changed files with 25 additions and 25 deletions

View file

@ -1,6 +1,6 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => "PreCommitDummy",
NAME => "PreCommitPlaceholder",
VERSION => "0.0.1",
);

View file

@ -1 +1 @@
module pre-commit-dummy-empty-module
module pre-commit-placeholder-empty-module

View file

@ -1,4 +1,4 @@
{
"name": "pre_commit_dummy_package",
"name": "pre_commit_placeholder_package",
"version": "0.0.0"
}

View file

@ -1,6 +0,0 @@
Gem::Specification.new do |s|
s.name = 'pre_commit_dummy_package'
s.version = '0.0.0'
s.summary = 'dummy gem for pre-commit hooks'
s.authors = ['Anthony Sottile']
end

View file

@ -0,0 +1,6 @@
Gem::Specification.new do |s|
s.name = 'pre_commit_placeholder_package'
s.version = '0.0.0'
s.summary = 'placeholder gem for pre-commit hooks'
s.authors = ['Anthony Sottile']
end

View file

@ -1,4 +1,4 @@
from setuptools import setup
setup(name='pre-commit-dummy-package', version='0.0.0')
setup(name='pre-commit-placeholder-package', version='0.0.0')