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
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigfiles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vince Broz
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: high_water_mark
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: bump
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
@@ -67,21 +67,21 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: overcommit
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: 0.58.0
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: 0.58.0
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: pry
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - ">="
|
@@ -95,7 +95,35 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: rake
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '13.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '13.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rspec
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '3.4'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '3.4'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop
|
99
127
|
requirement: !ruby/object:Gem::Requirement
|
100
128
|
requirements:
|
101
129
|
- - ">="
|
@@ -109,21 +137,21 @@ dependencies:
|
|
109
137
|
- !ruby/object:Gem::Version
|
110
138
|
version: '0'
|
111
139
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
140
|
+
name: rubocop-rake
|
113
141
|
requirement: !ruby/object:Gem::Requirement
|
114
142
|
requirements:
|
115
|
-
- - "
|
143
|
+
- - ">="
|
116
144
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
145
|
+
version: '0'
|
118
146
|
type: :development
|
119
147
|
prerelease: false
|
120
148
|
version_requirements: !ruby/object:Gem::Requirement
|
121
149
|
requirements:
|
122
|
-
- - "
|
150
|
+
- - ">="
|
123
151
|
- !ruby/object:Gem::Version
|
124
|
-
version: '
|
152
|
+
version: '0'
|
125
153
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
154
|
+
name: rubocop-rspec
|
127
155
|
requirement: !ruby/object:Gem::Requirement
|
128
156
|
requirements:
|
129
157
|
- - ">="
|
@@ -137,7 +165,21 @@ dependencies:
|
|
137
165
|
- !ruby/object:Gem::Version
|
138
166
|
version: '0'
|
139
167
|
- !ruby/object:Gem::Dependency
|
140
|
-
name:
|
168
|
+
name: simplecov
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 0.18.0
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: 0.18.0
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: simplecov-lcov
|
141
183
|
requirement: !ruby/object:Gem::Requirement
|
142
184
|
requirements:
|
143
185
|
- - ">="
|
@@ -151,7 +193,7 @@ dependencies:
|
|
151
193
|
- !ruby/object:Gem::Version
|
152
194
|
version: '0'
|
153
195
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
196
|
+
name: undercover
|
155
197
|
requirement: !ruby/object:Gem::Requirement
|
156
198
|
requirements:
|
157
199
|
- - ">="
|
@@ -164,8 +206,7 @@ dependencies:
|
|
164
206
|
- - ">="
|
165
207
|
- !ruby/object:Gem::Version
|
166
208
|
version: '0'
|
167
|
-
description:
|
168
|
-
them
|
209
|
+
description:
|
169
210
|
email:
|
170
211
|
- vince@broz.cc
|
171
212
|
executables:
|
@@ -173,22 +214,84 @@ executables:
|
|
173
214
|
extensions: []
|
174
215
|
extra_rdoc_files: []
|
175
216
|
files:
|
217
|
+
- ".circleci/config.yml"
|
218
|
+
- ".envrc"
|
219
|
+
- ".git-hooks/pre_commit/circle_ci.rb"
|
220
|
+
- ".gitattributes"
|
221
|
+
- ".gitignore"
|
222
|
+
- ".overcommit.yml"
|
223
|
+
- ".rubocop.yml"
|
224
|
+
- ".rubocop_todo.yml"
|
225
|
+
- ".yamllint.yml"
|
176
226
|
- CODE_OF_CONDUCT.md
|
177
|
-
-
|
227
|
+
- DEVELOPMENT.md
|
228
|
+
- Gemfile
|
229
|
+
- Gemfile.lock
|
230
|
+
- LICENSE
|
231
|
+
- Makefile
|
178
232
|
- README.md
|
233
|
+
- Rakefile
|
179
234
|
- bigfiles.gemspec
|
180
235
|
- bin/bigfiles
|
236
|
+
- bin/bump
|
237
|
+
- bin/overcommit
|
238
|
+
- bin/rake
|
239
|
+
- coverage/.last_run.json
|
240
|
+
- docs/cookiecutter_input.json
|
241
|
+
- exe/bigfiles
|
242
|
+
- feature/big_files_cli_spec.rb
|
243
|
+
- feature/expected/four_files_results.txt
|
244
|
+
- feature/expected/no_files_results.txt
|
245
|
+
- feature/expected/swift_and_ruby_files_results.txt
|
246
|
+
- feature/expected/swift_zorb_and_ruby_files_excluded_results.txt
|
247
|
+
- feature/expected/swift_zorb_and_ruby_files_results.txt
|
248
|
+
- feature/expected/three_files_results.txt
|
249
|
+
- feature/feature_helper.rb
|
250
|
+
- feature/pronto_big_files_use_spec.rb
|
251
|
+
- feature/samples/four_files/five_lines.rb
|
252
|
+
- feature/samples/four_files/four_lines.rb
|
253
|
+
- feature/samples/four_files/three_lines.rb
|
254
|
+
- feature/samples/four_files/two_lines.rb
|
255
|
+
- feature/samples/no_files/.keepme
|
256
|
+
- feature/samples/swift_and_ruby_files/five_lines.swift
|
257
|
+
- feature/samples/swift_and_ruby_files/four_lines.rb
|
258
|
+
- feature/samples/swift_and_ruby_files/three_lines.rb
|
259
|
+
- feature/samples/swift_zorb_and_ruby_files/five_lines.swift
|
260
|
+
- feature/samples/swift_zorb_and_ruby_files/four_lines.zorb
|
261
|
+
- feature/samples/swift_zorb_and_ruby_files/three_lines.rb
|
262
|
+
- feature/samples/swift_zorb_and_ruby_files_excluded/excluded.rb
|
263
|
+
- feature/samples/swift_zorb_and_ruby_files_excluded/five_lines.swift
|
264
|
+
- feature/samples/swift_zorb_and_ruby_files_excluded/four_lines.zorb
|
265
|
+
- feature/samples/swift_zorb_and_ruby_files_excluded/three_lines.rb
|
266
|
+
- feature/samples/three_files/five_lines.rb
|
267
|
+
- feature/samples/three_files/four_lines.rb
|
268
|
+
- feature/samples/three_files/three_lines.rb
|
269
|
+
- fix.sh
|
181
270
|
- lib/bigfiles.rb
|
182
271
|
- lib/bigfiles/config.rb
|
183
272
|
- lib/bigfiles/file_with_lines.rb
|
184
273
|
- lib/bigfiles/inspector.rb
|
185
274
|
- lib/bigfiles/option_parser.rb
|
186
275
|
- lib/bigfiles/version.rb
|
187
|
-
|
276
|
+
- rakelib/citest.rake
|
277
|
+
- rakelib/clear_metrics.rake
|
278
|
+
- rakelib/console.rake
|
279
|
+
- rakelib/default.rake
|
280
|
+
- rakelib/feature.rake
|
281
|
+
- rakelib/gem_tasks.rake
|
282
|
+
- rakelib/localtest.rake
|
283
|
+
- rakelib/overcommit.rake
|
284
|
+
- rakelib/quality.rake
|
285
|
+
- rakelib/repl.rake
|
286
|
+
- rakelib/spec.rake
|
287
|
+
- rakelib/undercover.rake
|
288
|
+
- requirements_dev.txt
|
289
|
+
homepage: https://github.com/apiology/bigfiles
|
188
290
|
licenses:
|
189
|
-
- MIT
|
190
|
-
metadata:
|
191
|
-
|
291
|
+
- MIT license
|
292
|
+
metadata:
|
293
|
+
rubygems_mfa_required: 'true'
|
294
|
+
post_install_message:
|
192
295
|
rdoc_options: []
|
193
296
|
require_paths:
|
194
297
|
- lib
|
@@ -196,16 +299,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
196
299
|
requirements:
|
197
300
|
- - ">="
|
198
301
|
- !ruby/object:Gem::Version
|
199
|
-
version: '
|
302
|
+
version: '2.6'
|
200
303
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
201
304
|
requirements:
|
202
305
|
- - ">="
|
203
306
|
- !ruby/object:Gem::Version
|
204
307
|
version: '0'
|
205
308
|
requirements: []
|
206
|
-
|
207
|
-
|
208
|
-
signing_key:
|
309
|
+
rubygems_version: 3.0.3.1
|
310
|
+
signing_key:
|
209
311
|
specification_version: 4
|
210
312
|
summary: Finds largest source files in a project
|
211
313
|
test_files: []
|
data/License.txt
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright (c) 2013 Vincent Broz
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|