bigfiles 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.circleci/config.yml +134 -0
- data/.envrc +2 -0
- data/.git-hooks/pre_commit/circle_ci.rb +21 -0
- data/.gitattributes +6 -0
- data/.gitignore +65 -0
- data/.overcommit.yml +55 -0
- data/.rubocop.yml +116 -0
- data/.rubocop_todo.yml +13 -0
- data/.yamllint.yml +8 -0
- data/CODE_OF_CONDUCT.md +104 -46
- data/DEVELOPMENT.md +30 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +110 -0
- data/LICENSE +21 -0
- data/Makefile +73 -0
- data/README.md +3 -2
- data/Rakefile +3 -0
- data/bigfiles.gemspec +42 -33
- data/bin/bigfiles +25 -2
- data/bin/bump +29 -0
- data/bin/overcommit +29 -0
- data/bin/rake +29 -0
- data/coverage/.last_run.json +6 -0
- data/docs/cookiecutter_input.json +13 -0
- data/exe/bigfiles +6 -0
- data/feature/big_files_cli_spec.rb +49 -0
- data/feature/expected/four_files_results.txt +3 -0
- data/feature/expected/no_files_results.txt +0 -0
- data/feature/expected/swift_and_ruby_files_results.txt +3 -0
- data/feature/expected/swift_zorb_and_ruby_files_excluded_results.txt +3 -0
- data/feature/expected/swift_zorb_and_ruby_files_results.txt +3 -0
- data/feature/expected/three_files_results.txt +3 -0
- data/feature/feature_helper.rb +33 -0
- data/feature/pronto_big_files_use_spec.rb +54 -0
- data/feature/samples/four_files/five_lines.rb +5 -0
- data/feature/samples/four_files/four_lines.rb +4 -0
- data/feature/samples/four_files/three_lines.rb +3 -0
- data/feature/samples/four_files/two_lines.rb +2 -0
- data/feature/samples/no_files/.keepme +0 -0
- data/feature/samples/swift_and_ruby_files/five_lines.swift +5 -0
- data/feature/samples/swift_and_ruby_files/four_lines.rb +4 -0
- data/feature/samples/swift_and_ruby_files/three_lines.rb +3 -0
- data/feature/samples/swift_zorb_and_ruby_files/five_lines.swift +5 -0
- data/feature/samples/swift_zorb_and_ruby_files/four_lines.zorb +4 -0
- data/feature/samples/swift_zorb_and_ruby_files/three_lines.rb +3 -0
- data/feature/samples/swift_zorb_and_ruby_files_excluded/excluded.rb +9 -0
- data/feature/samples/swift_zorb_and_ruby_files_excluded/five_lines.swift +5 -0
- data/feature/samples/swift_zorb_and_ruby_files_excluded/four_lines.zorb +4 -0
- data/feature/samples/swift_zorb_and_ruby_files_excluded/three_lines.rb +3 -0
- data/feature/samples/three_files/five_lines.rb +5 -0
- data/feature/samples/three_files/four_lines.rb +4 -0
- data/feature/samples/three_files/three_lines.rb +3 -0
- data/fix.sh +371 -0
- data/lib/bigfiles/config.rb +1 -0
- data/lib/bigfiles/inspector.rb +3 -3
- data/lib/bigfiles/option_parser.rb +5 -6
- data/lib/bigfiles/version.rb +1 -1
- data/lib/bigfiles.rb +7 -6
- data/rakelib/citest.rake +4 -0
- data/rakelib/clear_metrics.rake +17 -0
- data/rakelib/console.rake +6 -0
- data/rakelib/default.rake +4 -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 +132 -30
- data/License.txt +0 -20
data/fix.sh
ADDED
@@ -0,0 +1,371 @@
|
|
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
|
+
rbenv install --list 2>/dev/null | grep "^${major_minor}."
|
73
|
+
}
|
74
|
+
|
75
|
+
ensure_dev_library() {
|
76
|
+
header_file_name=${1:?header file name}
|
77
|
+
homebrew_package=${2:?homebrew package}
|
78
|
+
apt_package=${3:-${homebrew_package}}
|
79
|
+
if ! [ -f /usr/include/"${header_file_name}" ] && \
|
80
|
+
! [ -f /usr/include/x86_64-linux-gnu/"${header_file_name}" ] && \
|
81
|
+
! [ -f /usr/local/include/"${header_file_name}" ] && \
|
82
|
+
! [ -f /usr/local/opt/"${homebrew_package}"/include/"${header_file_name}" ]
|
83
|
+
then
|
84
|
+
install_package "${homebrew_package}" "${apt_package}"
|
85
|
+
fi
|
86
|
+
}
|
87
|
+
|
88
|
+
ensure_ruby_build_requirements() {
|
89
|
+
ensure_dev_library readline/readline.h readline libreadline-dev
|
90
|
+
ensure_dev_library zlib.h zlib zlib1g-dev
|
91
|
+
ensure_dev_library openssl/ssl.h openssl libssl-dev
|
92
|
+
}
|
93
|
+
|
94
|
+
# You can find out which feature versions are still supported / have
|
95
|
+
# been release here: https://www.ruby-lang.org/en/downloads/
|
96
|
+
ensure_ruby_versions() {
|
97
|
+
# You can find out which feature versions are still supported / have
|
98
|
+
# been release here: https://www.ruby-lang.org/en/downloads/
|
99
|
+
ruby_versions="$(latest_ruby_version 2.6)"
|
100
|
+
|
101
|
+
echo "Latest Ruby versions: ${ruby_versions}"
|
102
|
+
|
103
|
+
ensure_ruby_build_requirements
|
104
|
+
|
105
|
+
for ver in $ruby_versions
|
106
|
+
do
|
107
|
+
# These CFLAGS can be retired once 2.6.7 is no longer needed :
|
108
|
+
#
|
109
|
+
# https://github.com/rbenv/ruby-build/issues/1747
|
110
|
+
# https://github.com/rbenv/ruby-build/issues/1489
|
111
|
+
# https://bugs.ruby-lang.org/issues/17777
|
112
|
+
if [ "${ver}" == 2.6.7 ]
|
113
|
+
then
|
114
|
+
CFLAGS="-Wno-error=implicit-function-declaration" rbenv install -s "${ver}"
|
115
|
+
else
|
116
|
+
rbenv install -s "${ver}"
|
117
|
+
fi
|
118
|
+
done
|
119
|
+
}
|
120
|
+
|
121
|
+
ensure_bundle() {
|
122
|
+
# Not sure why this is needed a second time, but it seems to be?
|
123
|
+
#
|
124
|
+
# https://app.circleci.com/pipelines/github/apiology/source_finder/21/workflows/88db659f-a4f4-4751-abc0-46f5929d8e58/jobs/107
|
125
|
+
set_rbenv_env_variables
|
126
|
+
bundle --version >/dev/null 2>&1 || gem install --no-document bundler
|
127
|
+
bundler_version=$(bundle --version | cut -d ' ' -f3)
|
128
|
+
bundler_version_major=$(cut -d. -f1 <<< "${bundler_version}")
|
129
|
+
bundler_version_minor=$(cut -d. -f2 <<< "${bundler_version}")
|
130
|
+
bundler_version_patch=$(cut -d. -f3 <<< "${bundler_version}")
|
131
|
+
# Version 2.1 of bundler seems to have some issues with nokogiri:
|
132
|
+
#
|
133
|
+
# https://app.asana.com/0/1107901397356088/1199504270687298
|
134
|
+
|
135
|
+
# Version 2.2.22 of bundler comes with a fix to ensure the 'bundle
|
136
|
+
# update --conservative' flag works as expected - important when
|
137
|
+
# doing a 'bundle update' on a about-to-be-published gem after
|
138
|
+
# bumping a gem version.
|
139
|
+
need_better_bundler=false
|
140
|
+
if [ "${bundler_version_major}" -lt 2 ]
|
141
|
+
then
|
142
|
+
need_better_bundler=true
|
143
|
+
elif [ "${bundler_version_major}" -eq 2 ]
|
144
|
+
then
|
145
|
+
if [ "${bundler_version_minor}" -lt 2 ]
|
146
|
+
then
|
147
|
+
need_better_bundler=true
|
148
|
+
elif [ "${bundler_version_minor}" -eq 2 ]
|
149
|
+
then
|
150
|
+
if [ "${bundler_version_patch}" -lt 22 ]
|
151
|
+
then
|
152
|
+
need_better_bundler=true
|
153
|
+
fi
|
154
|
+
fi
|
155
|
+
fi
|
156
|
+
if [ "${need_better_bundler}" = true ]
|
157
|
+
then
|
158
|
+
gem install --no-document bundler
|
159
|
+
fi
|
160
|
+
make bundle_install
|
161
|
+
# https://bundler.io/v2.0/bundle_lock.html#SUPPORTING-OTHER-PLATFORMS
|
162
|
+
#
|
163
|
+
# "If you want your bundle to support platforms other than the one
|
164
|
+
# you're running locally, you can run bundle lock --add-platform
|
165
|
+
# PLATFORM to add PLATFORM to the lockfile, force bundler to
|
166
|
+
# re-resolve and consider the new platform when picking gems, all
|
167
|
+
# without needing to have a machine that matches PLATFORM handy to
|
168
|
+
# install those platform-specific gems on.'
|
169
|
+
#
|
170
|
+
# This affects nokogiri, which will try to reinstall itself in
|
171
|
+
# Docker builds where it's already installed if this is not run.
|
172
|
+
for platform in x86_64-darwin-20 x86_64-linux
|
173
|
+
do
|
174
|
+
grep "${platform:?}" Gemfile.lock >/dev/null 2>&1 || bundle lock --add-platform "${platform:?}"
|
175
|
+
done
|
176
|
+
}
|
177
|
+
|
178
|
+
set_ruby_local_version() {
|
179
|
+
latest_ruby_version="$(cut -d' ' -f1 <<< "${ruby_versions}")"
|
180
|
+
echo "${latest_ruby_version}" > .ruby-version
|
181
|
+
}
|
182
|
+
|
183
|
+
latest_python_version() {
|
184
|
+
major_minor=${1}
|
185
|
+
# https://stackoverflow.com/questions/369758/how-to-trim-whitespace-from-a-bash-variable
|
186
|
+
pyenv install --list | grep "^ ${major_minor}." | grep -v -- -dev | tail -1 | xargs
|
187
|
+
}
|
188
|
+
|
189
|
+
install_pyenv() {
|
190
|
+
if [ "$(uname)" == "Darwin" ]
|
191
|
+
then
|
192
|
+
HOMEBREW_NO_AUTO_UPDATE=1 brew install pyenv || true
|
193
|
+
if ! type pyenv 2>/dev/null
|
194
|
+
then
|
195
|
+
# https://github.com/pyenv/pyenv-installer/blob/master/bin/pyenv-installer
|
196
|
+
>&2 cat <<EOF
|
197
|
+
WARNING: seems you still have not added 'pyenv' to the load path.
|
198
|
+
|
199
|
+
# Load pyenv automatically by adding
|
200
|
+
# the following to ~/.bashrc:
|
201
|
+
|
202
|
+
export PYENV_ROOT="${HOME}/.pyenv"
|
203
|
+
export PATH="${PYENV_ROOT}/bin:$PATH"
|
204
|
+
eval "$(pyenv init --path)"
|
205
|
+
eval "$(pyenv virtualenv-init -)"
|
206
|
+
EOF
|
207
|
+
fi
|
208
|
+
else
|
209
|
+
curl https://pyenv.run | bash
|
210
|
+
fi
|
211
|
+
}
|
212
|
+
|
213
|
+
set_pyenv_env_variables() {
|
214
|
+
# looks like pyenv scripts aren't -u clean:
|
215
|
+
#
|
216
|
+
# https://app.circleci.com/pipelines/github/apiology/cookiecutter-pypackage/15/workflows/10506069-7662-46bd-b915-2992db3f795b/jobs/15
|
217
|
+
set +u
|
218
|
+
export PYENV_ROOT="${HOME}/.pyenv"
|
219
|
+
export PATH="${PYENV_ROOT}/bin:$PATH"
|
220
|
+
eval "$(pyenv init --path)"
|
221
|
+
eval "$(pyenv virtualenv-init -)"
|
222
|
+
set -u
|
223
|
+
}
|
224
|
+
|
225
|
+
ensure_pyenv() {
|
226
|
+
if ! type pyenv >/dev/null 2>&1 && ! [ -f "${HOME}/.pyenv/bin/pyenv" ]
|
227
|
+
then
|
228
|
+
install_pyenv
|
229
|
+
fi
|
230
|
+
|
231
|
+
if ! type pyenv >/dev/null 2>&1
|
232
|
+
then
|
233
|
+
set_pyenv_env_variables
|
234
|
+
fi
|
235
|
+
}
|
236
|
+
|
237
|
+
install_package() {
|
238
|
+
homebrew_package=${1:?homebrew package}
|
239
|
+
apt_package=${2:-${homebrew_package}}
|
240
|
+
if [ "$(uname)" == "Darwin" ]
|
241
|
+
then
|
242
|
+
HOMEBREW_NO_AUTO_UPDATE=1 brew install "${homebrew_package}"
|
243
|
+
elif type apt-get >/dev/null 2>&1
|
244
|
+
then
|
245
|
+
update_apt
|
246
|
+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y "${apt_package}"
|
247
|
+
else
|
248
|
+
>&2 echo "Teach me how to install packages on this plaform"
|
249
|
+
exit 1
|
250
|
+
fi
|
251
|
+
}
|
252
|
+
|
253
|
+
ensure_python_build_requirements() {
|
254
|
+
ensure_dev_library zlib.h zlib zlib1g-dev
|
255
|
+
ensure_dev_library bzlib.h bzip2 libbz2-dev
|
256
|
+
ensure_dev_library openssl/ssl.h openssl libssl-dev
|
257
|
+
ensure_dev_library ffi.h libffi libffi-dev
|
258
|
+
ensure_dev_library sqlite3.h sqlite3 libsqlite3-dev
|
259
|
+
ensure_dev_library lzma.h xz liblzma-dev
|
260
|
+
ensure_dev_library readline/readline.h readline libreadline-dev
|
261
|
+
}
|
262
|
+
|
263
|
+
# You can find out which feature versions are still supported / have
|
264
|
+
# been release here: https://www.python.org/downloads/
|
265
|
+
ensure_python_versions() {
|
266
|
+
# You can find out which feature versions are still supported / have
|
267
|
+
# been release here: https://www.python.org/downloads/
|
268
|
+
python_versions="$(latest_python_version 3.10)"
|
269
|
+
|
270
|
+
echo "Latest Python versions: ${python_versions}"
|
271
|
+
|
272
|
+
ensure_python_build_requirements
|
273
|
+
|
274
|
+
for ver in $python_versions
|
275
|
+
do
|
276
|
+
if [ "$(uname)" == Darwin ]
|
277
|
+
then
|
278
|
+
if [ -z "${HOMEBREW_OPENSSL_PREFIX:-}" ]
|
279
|
+
then
|
280
|
+
HOMEBREW_OPENSSL_PREFIX="$(brew --prefix openssl)"
|
281
|
+
fi
|
282
|
+
pyenv_install() {
|
283
|
+
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 "$@"
|
284
|
+
}
|
285
|
+
|
286
|
+
major_minor="$(cut -d. -f1-2 <<<"${ver}")"
|
287
|
+
if [ "${major_minor}" == 3.6 ]
|
288
|
+
then
|
289
|
+
pyenv_install --patch "${ver}" < <(curl -sSL https://github.com/python/cpython/commit/8ea6353.patch\?full_index=1)
|
290
|
+
else
|
291
|
+
pyenv_install "${ver}"
|
292
|
+
fi
|
293
|
+
else
|
294
|
+
pyenv install -s "${ver}"
|
295
|
+
fi
|
296
|
+
done
|
297
|
+
}
|
298
|
+
|
299
|
+
ensure_pyenv_virtualenvs() {
|
300
|
+
latest_python_version="$(cut -d' ' -f1 <<< "${python_versions}")"
|
301
|
+
virtualenv_name="bigfiles-${latest_python_version}"
|
302
|
+
pyenv virtualenv "${latest_python_version}" "${virtualenv_name}" || true
|
303
|
+
# You can use this for your global stuff!
|
304
|
+
pyenv virtualenv "${latest_python_version}" mylibs || true
|
305
|
+
# shellcheck disable=SC2086
|
306
|
+
pyenv local "${virtualenv_name}" ${python_versions} mylibs
|
307
|
+
}
|
308
|
+
|
309
|
+
ensure_pip_and_wheel() {
|
310
|
+
# Make sure we have a pip with the 20.3 resolver, and after the
|
311
|
+
# initial bugfix release
|
312
|
+
major_pip_version=$(pip --version | cut -d' ' -f2 | cut -d '.' -f 1)
|
313
|
+
if [[ major_pip_version -lt 21 ]]
|
314
|
+
then
|
315
|
+
pip install 'pip>=20.3.1'
|
316
|
+
fi
|
317
|
+
# wheel is helpful for being able to cache long package builds
|
318
|
+
pip show wheel >/dev/null 2>&1 || pip install wheel
|
319
|
+
}
|
320
|
+
|
321
|
+
ensure_python_requirements() {
|
322
|
+
make pip_install
|
323
|
+
}
|
324
|
+
|
325
|
+
ensure_shellcheck() {
|
326
|
+
if ! type shellcheck >/dev/null 2>&1
|
327
|
+
then
|
328
|
+
install_package shellcheck
|
329
|
+
fi
|
330
|
+
}
|
331
|
+
|
332
|
+
ensure_overcommit() {
|
333
|
+
# don't run if we're in the middle of a cookiecutter child project
|
334
|
+
# test, or otherwise don't have a Git repo to install hooks into...
|
335
|
+
if [ -d .git ]
|
336
|
+
then
|
337
|
+
bundle exec overcommit --install
|
338
|
+
else
|
339
|
+
>&2 echo 'Not in a git repo; not installing git hooks'
|
340
|
+
fi
|
341
|
+
}
|
342
|
+
|
343
|
+
ensure_rugged_packages_installed() {
|
344
|
+
install_package icu4c libicu-dev # needed by rugged, needed by undercover
|
345
|
+
install_package pkg-config # needed by rugged, needed by undercover
|
346
|
+
install_package cmake # needed by rugged, needed by undercover
|
347
|
+
}
|
348
|
+
|
349
|
+
ensure_rbenv
|
350
|
+
|
351
|
+
ensure_ruby_versions
|
352
|
+
|
353
|
+
set_ruby_local_version
|
354
|
+
|
355
|
+
ensure_rugged_packages_installed
|
356
|
+
|
357
|
+
ensure_bundle
|
358
|
+
|
359
|
+
ensure_pyenv
|
360
|
+
|
361
|
+
ensure_python_versions
|
362
|
+
|
363
|
+
ensure_pyenv_virtualenvs
|
364
|
+
|
365
|
+
ensure_pip_and_wheel
|
366
|
+
|
367
|
+
ensure_python_requirements
|
368
|
+
|
369
|
+
ensure_shellcheck
|
370
|
+
|
371
|
+
ensure_overcommit
|
data/lib/bigfiles/config.rb
CHANGED
data/lib/bigfiles/inspector.rb
CHANGED
@@ -10,11 +10,11 @@ module BigFiles
|
|
10
10
|
def initialize(config: Config.new,
|
11
11
|
source_file_globber: SourceFinder::SourceFileGlobber.new,
|
12
12
|
file_with_lines: FileWithLines,
|
13
|
-
|
13
|
+
io_class: Kernel)
|
14
14
|
@config = config
|
15
15
|
@source_file_globber = source_file_globber
|
16
16
|
@file_with_lines = file_with_lines
|
17
|
-
@
|
17
|
+
@io_class = io_class
|
18
18
|
end
|
19
19
|
|
20
20
|
def find_and_analyze
|
@@ -28,7 +28,7 @@ module BigFiles
|
|
28
28
|
|
29
29
|
def find_analyze_and_report_on_files
|
30
30
|
find_and_analyze.each do |file|
|
31
|
-
@
|
31
|
+
@io_class.puts "#{file.num_lines}: #{file.filename}"
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
@@ -5,12 +5,11 @@ require_relative 'config'
|
|
5
5
|
module BigFiles
|
6
6
|
# Parse options passed to bigfiles command
|
7
7
|
class OptionParser
|
8
|
-
def initialize(option_parser_class: ::OptionParser,
|
9
|
-
|
10
|
-
exiter: Kernel
|
11
|
-
source_finder_option_parser:)
|
8
|
+
def initialize(source_finder_option_parser:, option_parser_class: ::OptionParser,
|
9
|
+
io_class: Kernel,
|
10
|
+
exiter: Kernel)
|
12
11
|
@option_parser_class = option_parser_class
|
13
|
-
@
|
12
|
+
@io_class = io_class
|
14
13
|
@exiter = exiter
|
15
14
|
@source_finder_option_parser = source_finder_option_parser
|
16
15
|
end
|
@@ -48,7 +47,7 @@ module BigFiles
|
|
48
47
|
end
|
49
48
|
|
50
49
|
def usage
|
51
|
-
@
|
50
|
+
@io_class.puts @option_parser
|
52
51
|
@exiter.exit(1)
|
53
52
|
end
|
54
53
|
end
|
data/lib/bigfiles/version.rb
CHANGED
data/lib/bigfiles.rb
CHANGED
@@ -2,9 +2,10 @@
|
|
2
2
|
|
3
3
|
require 'optparse'
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
require 'bigfiles/file_with_lines'
|
6
|
+
require 'bigfiles/option_parser'
|
7
|
+
require 'bigfiles/inspector'
|
8
|
+
require 'bigfiles/version'
|
8
9
|
require 'source_finder/source_file_globber'
|
9
10
|
require 'source_finder/option_parser'
|
10
11
|
|
@@ -13,7 +14,7 @@ module BigFiles
|
|
13
14
|
# Simple tool to find the largest source files in your project.
|
14
15
|
class BigFiles
|
15
16
|
def initialize(args,
|
16
|
-
|
17
|
+
io_class: Kernel,
|
17
18
|
exiter: Kernel,
|
18
19
|
file_with_lines: FileWithLines,
|
19
20
|
source_file_globber: SourceFinder::SourceFileGlobber.new,
|
@@ -23,7 +24,7 @@ module BigFiles
|
|
23
24
|
bigfiles_option_parser:
|
24
25
|
::BigFiles::OptionParser
|
25
26
|
.new(option_parser_class: option_parser_class,
|
26
|
-
|
27
|
+
io_class: io_class,
|
27
28
|
exiter: exiter,
|
28
29
|
source_finder_option_parser:
|
29
30
|
source_finder_option_parser),
|
@@ -33,7 +34,7 @@ module BigFiles
|
|
33
34
|
@inspector = inspector_class.new(source_file_globber: source_file_globber,
|
34
35
|
config: config,
|
35
36
|
file_with_lines: file_with_lines,
|
36
|
-
|
37
|
+
io_class: io_class)
|
37
38
|
end
|
38
39
|
|
39
40
|
def run
|
data/rakelib/citest.rake
ADDED
@@ -0,0 +1,17 @@
|
|
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
|
+
ret =
|
7
|
+
system('git checkout coverage/.last_run.json')
|
8
|
+
raise unless ret
|
9
|
+
|
10
|
+
# Without this old lines which are removed are still counted,
|
11
|
+
# leading to inconsistent coverage percentages between runs.
|
12
|
+
#
|
13
|
+
# need to save coverage/.last_run.json
|
14
|
+
ret =
|
15
|
+
system('rm -fr coverage/assets coverage/.*.json.lock coverage/lcov/* coverage/index.html coverage/.resultset.json')
|
16
|
+
raise unless ret
|
17
|
+
end
|
@@ -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