punchlist 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +132 -0
- data/.envrc +4 -0
- data/.git-hooks/pre_commit/circle_ci.rb +25 -0
- data/.git-hooks/pre_commit/punchlist.rb +51 -0
- data/.git-hooks/pre_commit/solargraph_typecheck.rb +64 -0
- data/.gitattributes +6 -0
- data/.gitignore +60 -0
- data/.markdownlint_style.rb +3 -0
- data/.mdlrc +1 -0
- data/.overcommit.yml +87 -0
- data/.pronto.yml +2 -0
- data/.rubocop.yml +148 -0
- data/.solargraph.yml +26 -0
- data/.yamllint.yml +8 -0
- data/CODE_OF_CONDUCT.md +133 -0
- data/CONTRIBUTING.rst +75 -0
- data/ChangeLog.md +8 -0
- data/DEVELOPMENT.md +31 -0
- data/Gemfile +26 -0
- data/Gemfile.lock +186 -0
- data/LICENSE +22 -0
- data/Makefile +104 -0
- data/README.md +27 -0
- data/Rakefile +2 -49
- data/bin/bump +29 -0
- data/bin/overcommit +29 -0
- data/bin/rake +29 -0
- data/bin/rubocop +27 -0
- data/bin/solargraph +27 -0
- data/bin/yard +27 -0
- data/config/env.1p +0 -0
- data/docs/.gitignore +3 -0
- data/docs/cookiecutter_input.json +16 -0
- data/feature/expected/mixed_types_of_source_files_results.txt +2 -0
- data/feature/expected/no_files_results.txt +0 -0
- data/feature/expected/non_source_file_with_pis_results.txt +0 -0
- data/feature/expected/one_source_file_with_cis_results.txt +1 -0
- data/feature/expected/scala_file_to_be_ignored_results.txt +1 -0
- data/feature/expected/source_file_with_no_items_results.txt +0 -0
- data/feature/feature_helper.rb +41 -0
- data/feature/pronto_punchlist_use_spec.rb +26 -0
- data/feature/punchlist_cli_spec.rb +63 -0
- data/feature/samples/mixed_types_of_source_files/lib/bar.scala +1 -0
- data/feature/samples/mixed_types_of_source_files/lib/foo.rb +4 -0
- data/feature/samples/no_files/.ignore +0 -0
- data/feature/samples/non_source_file_with_pis/foo.doc +5 -0
- data/feature/samples/one_source_file_with_cis/app/foo.rb +4 -0
- data/feature/samples/scala_file_to_be_ignored/lib/bar.scala +1 -0
- data/feature/samples/scala_file_to_be_ignored/lib/foo.rb +4 -0
- data/feature/samples/source_file_with_no_items/foo.rb +3 -0
- data/fix.sh +411 -0
- data/lib/punchlist/inspector.rb +27 -7
- data/lib/punchlist/version.rb +1 -1
- data/lib/punchlist.rb +1 -0
- data/metrics/brakeman_high_water_mark +1 -0
- data/metrics/flake8_high_water_mark +1 -0
- data/metrics/jscs_high_water_mark +1 -0
- data/metrics/punchlist_high_water_mark +1 -0
- data/metrics/pycodestyle_high_water_mark +1 -0
- data/metrics/rails_best_practices_high_water_mark +1 -0
- data/metrics/scalastyle_high_water_mark +1 -0
- data/metrics/shellcheck_high_water_mark +1 -0
- data/package.json +9 -0
- data/punchlist.gemspec +25 -31
- data/rakelib/citest.rake +4 -0
- data/rakelib/clear_metrics.rake +9 -0
- data/rakelib/console.rake +6 -0
- data/rakelib/default.rake +4 -0
- data/rakelib/doc.rake +6 -0
- data/rakelib/feature.rake +10 -0
- data/rakelib/gem_tasks.rake +3 -0
- data/rakelib/localtest.rake +4 -0
- data/rakelib/overcommit.rake +6 -0
- data/rakelib/quality.rake +4 -0
- data/rakelib/repl.rake +4 -0
- data/rakelib/spec.rake +9 -0
- data/rakelib/undercover.rake +8 -0
- data/requirements_dev.txt +2 -0
- metadata +88 -115
- data/License.txt +0 -20
data/fix.sh
ADDED
@@ -0,0 +1,411 @@
|
|
1
|
+
#!/bin/bash -eu
|
2
|
+
|
3
|
+
set -o pipefail
|
4
|
+
|
5
|
+
apt_upgraded=0
|
6
|
+
|
7
|
+
update_apt() {
|
8
|
+
if [ "${apt_upgraded}" = 0 ]
|
9
|
+
then
|
10
|
+
sudo DEBIAN_FRONTEND=noninteractive apt-get update -y
|
11
|
+
apt_upgraded=1
|
12
|
+
fi
|
13
|
+
}
|
14
|
+
|
15
|
+
install_rbenv() {
|
16
|
+
if [ "$(uname)" == "Darwin" ]
|
17
|
+
then
|
18
|
+
HOMEBREW_NO_AUTO_UPDATE=1 brew install rbenv || true
|
19
|
+
if ! type rbenv 2>/dev/null
|
20
|
+
then
|
21
|
+
# https://github.com/pyenv/pyenv-installer/blob/master/bin/pyenv-installer
|
22
|
+
>&2 cat <<EOF
|
23
|
+
WARNING: seems you still have not added 'rbenv' to the load path.
|
24
|
+
|
25
|
+
# Load rbenv automatically by adding
|
26
|
+
# the following to ~/.bashrc:
|
27
|
+
|
28
|
+
export PATH="$HOME/.rbenv/bin:$PATH"
|
29
|
+
eval "$(rbenv init -)"
|
30
|
+
EOF
|
31
|
+
fi
|
32
|
+
else
|
33
|
+
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
|
34
|
+
fi
|
35
|
+
}
|
36
|
+
|
37
|
+
set_rbenv_env_variables() {
|
38
|
+
export PATH="${HOME}/.rbenv/bin:$PATH"
|
39
|
+
eval "$(rbenv init -)"
|
40
|
+
}
|
41
|
+
|
42
|
+
install_ruby_build() {
|
43
|
+
if [ "$(uname)" == "Darwin" ]
|
44
|
+
then
|
45
|
+
HOMEBREW_NO_AUTO_UPDATE=1 brew install ruby-build || true
|
46
|
+
else
|
47
|
+
mkdir -p "$(rbenv root)"/plugins
|
48
|
+
git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build
|
49
|
+
fi
|
50
|
+
}
|
51
|
+
|
52
|
+
ensure_ruby_build() {
|
53
|
+
if ! type ruby-build >/dev/null 2>&1 && ! [ -d "${HOME}/.rbenv/plugins/ruby-build" ]
|
54
|
+
then
|
55
|
+
install_ruby_build
|
56
|
+
fi
|
57
|
+
}
|
58
|
+
|
59
|
+
ensure_rbenv() {
|
60
|
+
if ! type rbenv >/dev/null 2>&1 && ! [ -f "${HOME}/.rbenv/bin/rbenv" ]
|
61
|
+
then
|
62
|
+
install_rbenv
|
63
|
+
fi
|
64
|
+
|
65
|
+
set_rbenv_env_variables
|
66
|
+
|
67
|
+
ensure_ruby_build
|
68
|
+
}
|
69
|
+
|
70
|
+
latest_ruby_version() {
|
71
|
+
major_minor=${1}
|
72
|
+
|
73
|
+
# Double check that this command doesn't error out under -e
|
74
|
+
rbenv install --list >/dev/null 2>&1
|
75
|
+
|
76
|
+
# not sure why, but 'rbenv install --list' below exits with error code
|
77
|
+
# 1...after providing the same output the previous line gave when it
|
78
|
+
# exited with error code 0.
|
79
|
+
#
|
80
|
+
# https://github.com/rbenv/rbenv/issues/1441
|
81
|
+
set +e
|
82
|
+
rbenv install --list 2>/dev/null | cat | grep "^${major_minor}."
|
83
|
+
set -e
|
84
|
+
}
|
85
|
+
|
86
|
+
ensure_dev_library() {
|
87
|
+
header_file_name=${1:?header file name}
|
88
|
+
homebrew_package=${2:?homebrew package}
|
89
|
+
apt_package=${3:-${homebrew_package}}
|
90
|
+
if ! [ -f /usr/include/"${header_file_name}" ] && \
|
91
|
+
! [ -f /usr/include/x86_64-linux-gnu/"${header_file_name}" ] && \
|
92
|
+
! [ -f /usr/local/include/"${header_file_name}" ] && \
|
93
|
+
! [ -f /usr/local/opt/"${homebrew_package}"/include/"${header_file_name}" ]
|
94
|
+
then
|
95
|
+
install_package "${homebrew_package}" "${apt_package}"
|
96
|
+
fi
|
97
|
+
}
|
98
|
+
|
99
|
+
ensure_ruby_build_requirements() {
|
100
|
+
ensure_dev_library readline/readline.h readline libreadline-dev
|
101
|
+
ensure_dev_library zlib.h zlib zlib1g-dev
|
102
|
+
ensure_dev_library openssl/ssl.h openssl libssl-dev
|
103
|
+
ensure_dev_library yaml.h libyaml libyaml-dev
|
104
|
+
}
|
105
|
+
|
106
|
+
ensure_latest_ruby_build_definitions() {
|
107
|
+
ensure_rbenv
|
108
|
+
|
109
|
+
git -C "$(rbenv root)"/plugins/ruby-build pull
|
110
|
+
}
|
111
|
+
|
112
|
+
# You can find out which feature versions are still supported / have
|
113
|
+
# been release here: https://www.ruby-lang.org/en/downloads/
|
114
|
+
ensure_ruby_versions() {
|
115
|
+
ensure_latest_ruby_build_definitions
|
116
|
+
|
117
|
+
# You can find out which feature versions are still supported / have
|
118
|
+
# been release here: https://www.ruby-lang.org/en/downloads/
|
119
|
+
ruby_versions="$(latest_ruby_version 3.1)"
|
120
|
+
|
121
|
+
echo "Latest Ruby versions: ${ruby_versions}"
|
122
|
+
|
123
|
+
ensure_ruby_build_requirements
|
124
|
+
|
125
|
+
for ver in $ruby_versions
|
126
|
+
do
|
127
|
+
rbenv install -s "${ver}"
|
128
|
+
hash -r # ensure we are seeing latest bundler etc
|
129
|
+
done
|
130
|
+
}
|
131
|
+
|
132
|
+
ensure_bundle() {
|
133
|
+
# Not sure why this is needed a second time, but it seems to be?
|
134
|
+
#
|
135
|
+
# https://app.circleci.com/pipelines/github/apiology/source_finder/21/workflows/88db659f-a4f4-4751-abc0-46f5929d8e58/jobs/107
|
136
|
+
set_rbenv_env_variables
|
137
|
+
bundle --version >/dev/null 2>&1 || gem install --no-document bundler
|
138
|
+
bundler_version=$(bundle --version | cut -d ' ' -f3)
|
139
|
+
bundler_version_major=$(cut -d. -f1 <<< "${bundler_version}")
|
140
|
+
bundler_version_minor=$(cut -d. -f2 <<< "${bundler_version}")
|
141
|
+
bundler_version_patch=$(cut -d. -f3 <<< "${bundler_version}")
|
142
|
+
# Version 2.1 of bundler seems to have some issues with nokogiri:
|
143
|
+
#
|
144
|
+
# https://app.asana.com/0/1107901397356088/1199504270687298
|
145
|
+
|
146
|
+
# Version <2.2.22 of bundler isn't compatible with Ruby 3.3:
|
147
|
+
#
|
148
|
+
# https://stackoverflow.com/questions/70800753/rails-calling-didyoumeanspell-checkers-mergeerror-name-spell-checker-h
|
149
|
+
#
|
150
|
+
#
|
151
|
+
# Version 2.5.5 fixed an issue in 2.2.22 with the 'bump' gem:
|
152
|
+
#
|
153
|
+
# https://app.circleci.com/pipelines/github/apiology/checkoff/1281/workflows/f667f909-c3fc-4ae2-8593-dde2b588a7a7/jobs/2491
|
154
|
+
need_better_bundler=false
|
155
|
+
if [ "${bundler_version_major}" -lt 2 ]
|
156
|
+
then
|
157
|
+
need_better_bundler=true
|
158
|
+
elif [ "${bundler_version_major}" -eq 2 ]
|
159
|
+
then
|
160
|
+
if [ "${bundler_version_minor}" -lt 5 ]
|
161
|
+
then
|
162
|
+
need_better_bundler=true
|
163
|
+
elif [ "${bundler_version_minor}" -eq 5 ]
|
164
|
+
then
|
165
|
+
if [ "${bundler_version_patch}" -lt 5 ]
|
166
|
+
then
|
167
|
+
need_better_bundler=true
|
168
|
+
fi
|
169
|
+
fi
|
170
|
+
fi
|
171
|
+
if [ "${need_better_bundler}" = true ]
|
172
|
+
then
|
173
|
+
>&2 echo "Original bundler version: ${bundler_version}"
|
174
|
+
# need to do this first before 'bundle update --bundler' will work
|
175
|
+
make bundle_install
|
176
|
+
bundle update --bundler
|
177
|
+
gem install bundler:2.5.5
|
178
|
+
>&2 echo "Updated bundler version: $(bundle --version)"
|
179
|
+
# ensure next step installs fresh bundle
|
180
|
+
rm -f Gemfile.lock.installed
|
181
|
+
fi
|
182
|
+
make bundle_install
|
183
|
+
# https://bundler.io/v2.0/bundle_lock.html#SUPPORTING-OTHER-PLATFORMS
|
184
|
+
#
|
185
|
+
# "If you want your bundle to support platforms other than the one
|
186
|
+
# you're running locally, you can run bundle lock --add-platform
|
187
|
+
# PLATFORM to add PLATFORM to the lockfile, force bundler to
|
188
|
+
# re-resolve and consider the new platform when picking gems, all
|
189
|
+
# without needing to have a machine that matches PLATFORM handy to
|
190
|
+
# install those platform-specific gems on.'
|
191
|
+
#
|
192
|
+
# This affects nokogiri, which will try to reinstall itself in
|
193
|
+
# Docker builds where it's already installed if this is not run.
|
194
|
+
for platform in arm64-darwin-23 x86_64-darwin-23 x86_64-linux x86_64-linux-musl
|
195
|
+
do
|
196
|
+
grep "${platform:?}" Gemfile.lock >/dev/null 2>&1 || bundle lock --add-platform "${platform:?}"
|
197
|
+
done
|
198
|
+
}
|
199
|
+
|
200
|
+
set_ruby_local_version() {
|
201
|
+
latest_ruby_version="$(cut -d' ' -f1 <<< "${ruby_versions}")"
|
202
|
+
echo "${latest_ruby_version}" > .ruby-version
|
203
|
+
}
|
204
|
+
|
205
|
+
latest_python_version() {
|
206
|
+
major_minor=${1}
|
207
|
+
# https://stackoverflow.com/questions/369758/how-to-trim-whitespace-from-a-bash-variable
|
208
|
+
pyenv install --list | grep "^ ${major_minor}." | grep -v -- -dev | tail -1 | xargs
|
209
|
+
}
|
210
|
+
|
211
|
+
install_pyenv() {
|
212
|
+
if [ "$(uname)" == "Darwin" ]
|
213
|
+
then
|
214
|
+
HOMEBREW_NO_AUTO_UPDATE=1 brew install pyenv || true
|
215
|
+
if ! type pyenv 2>/dev/null
|
216
|
+
then
|
217
|
+
# https://github.com/pyenv/pyenv-installer/blob/master/bin/pyenv-installer
|
218
|
+
>&2 cat <<EOF
|
219
|
+
WARNING: seems you still have not added 'pyenv' to the load path.
|
220
|
+
|
221
|
+
# Load pyenv automatically by adding
|
222
|
+
# the following to ~/.bashrc:
|
223
|
+
|
224
|
+
export PYENV_ROOT="${HOME}/.pyenv"
|
225
|
+
export PATH="${PYENV_ROOT}/bin:$PATH"
|
226
|
+
eval "$(pyenv init --path)"
|
227
|
+
eval "$(pyenv virtualenv-init -)"
|
228
|
+
EOF
|
229
|
+
fi
|
230
|
+
else
|
231
|
+
curl https://pyenv.run | bash
|
232
|
+
fi
|
233
|
+
}
|
234
|
+
|
235
|
+
set_pyenv_env_variables() {
|
236
|
+
# looks like pyenv scripts aren't -u clean:
|
237
|
+
#
|
238
|
+
# https://app.circleci.com/pipelines/github/apiology/cookiecutter-pypackage/15/workflows/10506069-7662-46bd-b915-2992db3f795b/jobs/15
|
239
|
+
set +u
|
240
|
+
export PYENV_ROOT="${HOME}/.pyenv"
|
241
|
+
export PATH="${PYENV_ROOT}/bin:$PATH"
|
242
|
+
eval "$(pyenv init --path)"
|
243
|
+
eval "$(pyenv virtualenv-init -)"
|
244
|
+
set -u
|
245
|
+
}
|
246
|
+
|
247
|
+
ensure_pyenv() {
|
248
|
+
if ! type pyenv >/dev/null 2>&1 && ! [ -f "${HOME}/.pyenv/bin/pyenv" ]
|
249
|
+
then
|
250
|
+
install_pyenv
|
251
|
+
fi
|
252
|
+
|
253
|
+
if ! type pyenv >/dev/null 2>&1
|
254
|
+
then
|
255
|
+
set_pyenv_env_variables
|
256
|
+
fi
|
257
|
+
}
|
258
|
+
|
259
|
+
install_package() {
|
260
|
+
homebrew_package=${1:?homebrew package}
|
261
|
+
apt_package=${2:-${homebrew_package}}
|
262
|
+
if [ "$(uname)" == "Darwin" ]
|
263
|
+
then
|
264
|
+
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_UPGRADE=1 brew install "${homebrew_package}"
|
265
|
+
elif type apt-get >/dev/null 2>&1
|
266
|
+
then
|
267
|
+
if ! dpkg -s "${apt_package}" >/dev/null
|
268
|
+
then
|
269
|
+
update_apt
|
270
|
+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y "${apt_package}"
|
271
|
+
fi
|
272
|
+
else
|
273
|
+
>&2 echo "Teach me how to install packages on this plaform"
|
274
|
+
exit 1
|
275
|
+
fi
|
276
|
+
}
|
277
|
+
|
278
|
+
update_package() {
|
279
|
+
homebrew_package=${1:?homebrew package}
|
280
|
+
apt_package=${2:-${homebrew_package}}
|
281
|
+
if [ "$(uname)" == "Darwin" ]
|
282
|
+
then
|
283
|
+
brew install "${homebrew_package}"
|
284
|
+
elif type apt-get >/dev/null 2>&1
|
285
|
+
then
|
286
|
+
update_apt
|
287
|
+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y "${apt_package}"
|
288
|
+
else
|
289
|
+
>&2 echo "Teach me how to install packages on this plaform"
|
290
|
+
exit 1
|
291
|
+
fi
|
292
|
+
}
|
293
|
+
|
294
|
+
ensure_python_build_requirements() {
|
295
|
+
ensure_dev_library zlib.h zlib zlib1g-dev
|
296
|
+
ensure_dev_library bzlib.h bzip2 libbz2-dev
|
297
|
+
ensure_dev_library openssl/ssl.h openssl libssl-dev
|
298
|
+
ensure_dev_library ffi.h libffi libffi-dev
|
299
|
+
ensure_dev_library sqlite3.h sqlite3 libsqlite3-dev
|
300
|
+
ensure_dev_library lzma.h xz liblzma-dev
|
301
|
+
ensure_dev_library readline/readline.h readline libreadline-dev
|
302
|
+
}
|
303
|
+
|
304
|
+
# You can find out which feature versions are still supported / have
|
305
|
+
# been release here: https://www.python.org/downloads/
|
306
|
+
ensure_python_versions() {
|
307
|
+
# You can find out which feature versions are still supported / have
|
308
|
+
# been release here: https://www.python.org/downloads/
|
309
|
+
python_versions="$(latest_python_version 3.12)"
|
310
|
+
|
311
|
+
echo "Latest Python versions: ${python_versions}"
|
312
|
+
|
313
|
+
ensure_python_build_requirements
|
314
|
+
|
315
|
+
for ver in $python_versions
|
316
|
+
do
|
317
|
+
if [ "$(uname)" == Darwin ]
|
318
|
+
then
|
319
|
+
if [ -z "${HOMEBREW_OPENSSL_PREFIX:-}" ]
|
320
|
+
then
|
321
|
+
HOMEBREW_OPENSSL_PREFIX="$(brew --prefix openssl)"
|
322
|
+
fi
|
323
|
+
pyenv_install() {
|
324
|
+
CFLAGS="-I/usr/local/opt/zlib/include -I/usr/local/opt/bzip2/include -I${HOMEBREW_OPENSSL_PREFIX}/include" LDFLAGS="-L/usr/local/opt/zlib/lib -L/usr/local/opt/bzip2/lib -L${HOMEBREW_OPENSSL_PREFIX}/lib" pyenv install --skip-existing "$@"
|
325
|
+
}
|
326
|
+
|
327
|
+
major_minor="$(cut -d. -f1-2 <<<"${ver}")"
|
328
|
+
pyenv_install "${ver}"
|
329
|
+
else
|
330
|
+
pyenv install -s "${ver}"
|
331
|
+
fi
|
332
|
+
done
|
333
|
+
}
|
334
|
+
|
335
|
+
ensure_pyenv_virtualenvs() {
|
336
|
+
latest_python_version="$(cut -d' ' -f1 <<< "${python_versions}")"
|
337
|
+
virtualenv_name="punchlist-${latest_python_version}"
|
338
|
+
pyenv virtualenv "${latest_python_version}" "${virtualenv_name}" || true
|
339
|
+
# You can use this for your global stuff!
|
340
|
+
pyenv virtualenv "${latest_python_version}" mylibs || true
|
341
|
+
# shellcheck disable=SC2086
|
342
|
+
pyenv local "${virtualenv_name}" ${python_versions} mylibs
|
343
|
+
}
|
344
|
+
|
345
|
+
ensure_pip_and_wheel() {
|
346
|
+
# https://cve.mitre.org/cgi-bin/cvename.cgi?name=2023-5752
|
347
|
+
major_pip_version=$(pip --version | cut -d' ' -f2 | cut -d '.' -f 1)
|
348
|
+
minor_pip_version=$(pip --version | cut -d' ' -f2 | cut -d '.' -f 2)
|
349
|
+
if [[ major_pip_version -lt 23 ]]
|
350
|
+
then
|
351
|
+
pip install 'pip>=23.3'
|
352
|
+
elif [[ major_pip_version -eq 23 ]] && [[ minor_pip_version -lt 3 ]]
|
353
|
+
then
|
354
|
+
pip install 'pip>=23.3'
|
355
|
+
fi
|
356
|
+
# wheel is helpful for being able to cache long package builds
|
357
|
+
pip show wheel >/dev/null 2>&1 || pip install wheel
|
358
|
+
}
|
359
|
+
|
360
|
+
ensure_python_requirements() {
|
361
|
+
make pip_install
|
362
|
+
}
|
363
|
+
|
364
|
+
ensure_shellcheck() {
|
365
|
+
if ! type shellcheck >/dev/null 2>&1
|
366
|
+
then
|
367
|
+
install_package shellcheck
|
368
|
+
fi
|
369
|
+
}
|
370
|
+
|
371
|
+
ensure_overcommit() {
|
372
|
+
# don't run if we're in the middle of a cookiecutter child project
|
373
|
+
# test, or otherwise don't have a Git repo to install hooks into...
|
374
|
+
if [ -d .git ]
|
375
|
+
then
|
376
|
+
bundle exec overcommit --install
|
377
|
+
bundle exec overcommit --sign pre-commit
|
378
|
+
else
|
379
|
+
>&2 echo 'Not in a git repo; not installing git hooks'
|
380
|
+
fi
|
381
|
+
}
|
382
|
+
|
383
|
+
ensure_rugged_packages_installed() {
|
384
|
+
install_package icu4c libicu-dev # needed by rugged, needed by undercover
|
385
|
+
install_package pkg-config # needed by rugged, needed by undercover
|
386
|
+
install_package cmake # needed by rugged, needed by undercover
|
387
|
+
}
|
388
|
+
|
389
|
+
ensure_rbenv
|
390
|
+
|
391
|
+
ensure_ruby_versions
|
392
|
+
|
393
|
+
set_ruby_local_version
|
394
|
+
|
395
|
+
ensure_rugged_packages_installed
|
396
|
+
|
397
|
+
ensure_bundle
|
398
|
+
|
399
|
+
ensure_pyenv
|
400
|
+
|
401
|
+
ensure_python_versions
|
402
|
+
|
403
|
+
ensure_pyenv_virtualenvs
|
404
|
+
|
405
|
+
ensure_pip_and_wheel
|
406
|
+
|
407
|
+
ensure_python_requirements
|
408
|
+
|
409
|
+
ensure_shellcheck
|
410
|
+
|
411
|
+
ensure_overcommit
|
data/lib/punchlist/inspector.rb
CHANGED
@@ -5,7 +5,9 @@ require_relative 'offense'
|
|
5
5
|
module Punchlist
|
6
6
|
# Inspects files for punchlist items
|
7
7
|
class Inspector
|
8
|
-
|
8
|
+
# @param punchlist_line_regexp [Regexp] a regular expression that matches punchlist items
|
9
|
+
# @param filename [String] the file to inspect
|
10
|
+
# @param file_opener [Class<File>] an object that responds to `open` like `File`
|
9
11
|
def initialize(punchlist_line_regexp, filename, file_opener: File)
|
10
12
|
@file_opener = file_opener
|
11
13
|
@punchlist_line_regexp = punchlist_line_regexp
|
@@ -14,18 +16,36 @@ module Punchlist
|
|
14
16
|
@line_num = 0
|
15
17
|
end
|
16
18
|
|
19
|
+
# @return [Array<Offense>] punchlist items for the specified file
|
20
|
+
def run
|
21
|
+
@file_opener.open(filename, 'r') do |file|
|
22
|
+
file.each_line { |line| inspect_line(line) }
|
23
|
+
end
|
24
|
+
@lines
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
# @return [Regexp]
|
30
|
+
attr_reader :punchlist_line_regexp
|
31
|
+
|
32
|
+
# @return [String]
|
33
|
+
attr_reader :filename
|
34
|
+
|
35
|
+
# Inspects a line for punchlist items and stores it in this objects state
|
36
|
+
#
|
37
|
+
# @param line [String] the line to inspect
|
38
|
+
# @return [void]
|
17
39
|
def inspect_line(line)
|
18
40
|
@line_num += 1
|
19
41
|
return unless line =~ punchlist_line_regexp
|
20
42
|
|
21
43
|
@lines << Offense.new(filename, @line_num, line.chomp)
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
file.each_line { |line| inspect_line(line) }
|
44
|
+
rescue ArgumentError => e
|
45
|
+
if e.message != 'invalid byte sequence in UTF-8'
|
46
|
+
# not a simple binary file we should ignore
|
47
|
+
raise
|
27
48
|
end
|
28
|
-
@lines
|
29
49
|
end
|
30
50
|
end
|
31
51
|
end
|
data/lib/punchlist/version.rb
CHANGED
data/lib/punchlist.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
17
|
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
0
|
@@ -0,0 +1 @@
|
|
1
|
+
11
|
data/package.json
ADDED
data/punchlist.gemspec
CHANGED
@@ -1,39 +1,33 @@
|
|
1
|
-
#
|
1
|
+
# coding: ascii
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
lib = File.expand_path('lib', __dir__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
6
|
require 'punchlist/version'
|
6
7
|
|
7
|
-
Gem::Specification.new do |
|
8
|
-
|
9
|
-
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = 'punchlist'
|
10
|
+
spec.version = Punchlist::VERSION
|
11
|
+
spec.authors = ["Vince Broz"]
|
12
|
+
spec.email = ['vince@broz.cc']
|
13
|
+
spec.summary = "Counts the number of 'todo' comments in your code"
|
14
|
+
spec.homepage = 'https://github.com/apiology/punchlist'
|
15
|
+
spec.license = 'MIT license'
|
16
|
+
spec.required_ruby_version = '>= 3.0'
|
10
17
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
'Rakefile',
|
20
|
-
'bin/punchlist',
|
21
|
-
'{lib}/**/*',
|
22
|
-
'punchlist.gemspec'] & `git ls-files -z`.split("\0")
|
23
|
-
# s.rdoc_options = ["--main", "README.md"]
|
24
|
-
s.require_paths = ['lib']
|
25
|
-
s.homepage = 'http://github.com/apiology/punchlist'
|
26
|
-
# s.rubyforge_project = %q{punchlist}
|
27
|
-
s.rubygems_version = '1.3.6'
|
28
|
-
s.summary = 'Finds largest source files in a project'
|
18
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
20
|
+
f.match(%r{^(test|spec|features)/})
|
21
|
+
end
|
22
|
+
end
|
23
|
+
spec.bindir = 'exe'
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ['lib']
|
29
26
|
|
30
|
-
|
27
|
+
spec.add_dependency('source_finder', ['>=2'])
|
28
|
+
# spec.add_runtime_dependency 'activesupport'
|
31
29
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
s.add_development_dependency('quality', ['~> 36'])
|
36
|
-
s.add_development_dependency('rake')
|
37
|
-
s.add_development_dependency('rspec')
|
38
|
-
s.add_development_dependency('simplecov')
|
30
|
+
spec.metadata = {
|
31
|
+
'rubygems_mfa_required' => 'true',
|
32
|
+
}
|
39
33
|
end
|
data/rakelib/citest.rake
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
desc 'Ensure that any locally ratcheted coverage metrics are cleared back ' \
|
4
|
+
'to git baseline'
|
5
|
+
task :clear_metrics do |_t|
|
6
|
+
# Without this old lines which are removed are still counted,
|
7
|
+
# leading to inconsistent coverage percentages between runs.
|
8
|
+
raise unless system('rm -fr coverage/')
|
9
|
+
end
|
data/rakelib/doc.rake
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rspec/core/rake_task'
|
4
|
+
|
5
|
+
desc 'Run features'
|
6
|
+
RSpec::Core::RakeTask.new(:feature) do |task|
|
7
|
+
task.pattern = 'feature/**/*_spec.rb'
|
8
|
+
task.rspec_opts = '--format doc --default-path feature ' \
|
9
|
+
'--require feature_helper'
|
10
|
+
end
|
data/rakelib/repl.rake
ADDED
data/rakelib/spec.rake
ADDED