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
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: punchlist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
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: 2024-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: source_finder
|
@@ -24,115 +24,65 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '2'
|
27
|
-
|
28
|
-
name: bundler
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: pronto
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: pronto-rubocop
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: quality
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '36'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '36'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rake
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rspec
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: simplecov
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
|
-
description: punchlist lists your annotation comments--things like 'LATER/HACK/FIXIT'
|
27
|
+
description:
|
126
28
|
email:
|
127
29
|
- vince@broz.cc
|
128
|
-
executables:
|
129
|
-
- punchlist
|
30
|
+
executables: []
|
130
31
|
extensions: []
|
131
32
|
extra_rdoc_files: []
|
132
33
|
files:
|
133
|
-
-
|
34
|
+
- ".circleci/config.yml"
|
35
|
+
- ".envrc"
|
36
|
+
- ".git-hooks/pre_commit/circle_ci.rb"
|
37
|
+
- ".git-hooks/pre_commit/punchlist.rb"
|
38
|
+
- ".git-hooks/pre_commit/solargraph_typecheck.rb"
|
39
|
+
- ".gitattributes"
|
40
|
+
- ".gitignore"
|
41
|
+
- ".markdownlint_style.rb"
|
42
|
+
- ".mdlrc"
|
43
|
+
- ".overcommit.yml"
|
44
|
+
- ".pronto.yml"
|
45
|
+
- ".rubocop.yml"
|
46
|
+
- ".solargraph.yml"
|
47
|
+
- ".yamllint.yml"
|
48
|
+
- CODE_OF_CONDUCT.md
|
49
|
+
- CONTRIBUTING.rst
|
50
|
+
- ChangeLog.md
|
51
|
+
- DEVELOPMENT.md
|
52
|
+
- Gemfile
|
53
|
+
- Gemfile.lock
|
54
|
+
- LICENSE
|
55
|
+
- Makefile
|
56
|
+
- README.md
|
134
57
|
- Rakefile
|
58
|
+
- bin/bump
|
59
|
+
- bin/overcommit
|
135
60
|
- bin/punchlist
|
61
|
+
- bin/rake
|
62
|
+
- bin/rubocop
|
63
|
+
- bin/solargraph
|
64
|
+
- bin/yard
|
65
|
+
- config/env.1p
|
66
|
+
- docs/.gitignore
|
67
|
+
- docs/cookiecutter_input.json
|
68
|
+
- feature/expected/mixed_types_of_source_files_results.txt
|
69
|
+
- feature/expected/no_files_results.txt
|
70
|
+
- feature/expected/non_source_file_with_pis_results.txt
|
71
|
+
- feature/expected/one_source_file_with_cis_results.txt
|
72
|
+
- feature/expected/scala_file_to_be_ignored_results.txt
|
73
|
+
- feature/expected/source_file_with_no_items_results.txt
|
74
|
+
- feature/feature_helper.rb
|
75
|
+
- feature/pronto_punchlist_use_spec.rb
|
76
|
+
- feature/punchlist_cli_spec.rb
|
77
|
+
- feature/samples/mixed_types_of_source_files/lib/bar.scala
|
78
|
+
- feature/samples/mixed_types_of_source_files/lib/foo.rb
|
79
|
+
- feature/samples/no_files/.ignore
|
80
|
+
- feature/samples/non_source_file_with_pis/foo.doc
|
81
|
+
- feature/samples/one_source_file_with_cis/app/foo.rb
|
82
|
+
- feature/samples/scala_file_to_be_ignored/lib/bar.scala
|
83
|
+
- feature/samples/scala_file_to_be_ignored/lib/foo.rb
|
84
|
+
- feature/samples/source_file_with_no_items/foo.rb
|
85
|
+
- fix.sh
|
136
86
|
- lib/punchlist.rb
|
137
87
|
- lib/punchlist/config.rb
|
138
88
|
- lib/punchlist/inspector.rb
|
@@ -140,12 +90,36 @@ files:
|
|
140
90
|
- lib/punchlist/option_parser.rb
|
141
91
|
- lib/punchlist/renderer.rb
|
142
92
|
- lib/punchlist/version.rb
|
93
|
+
- metrics/brakeman_high_water_mark
|
94
|
+
- metrics/flake8_high_water_mark
|
95
|
+
- metrics/jscs_high_water_mark
|
96
|
+
- metrics/punchlist_high_water_mark
|
97
|
+
- metrics/pycodestyle_high_water_mark
|
98
|
+
- metrics/rails_best_practices_high_water_mark
|
99
|
+
- metrics/scalastyle_high_water_mark
|
100
|
+
- metrics/shellcheck_high_water_mark
|
101
|
+
- package.json
|
143
102
|
- punchlist.gemspec
|
144
|
-
|
103
|
+
- rakelib/citest.rake
|
104
|
+
- rakelib/clear_metrics.rake
|
105
|
+
- rakelib/console.rake
|
106
|
+
- rakelib/default.rake
|
107
|
+
- rakelib/doc.rake
|
108
|
+
- rakelib/feature.rake
|
109
|
+
- rakelib/gem_tasks.rake
|
110
|
+
- rakelib/localtest.rake
|
111
|
+
- rakelib/overcommit.rake
|
112
|
+
- rakelib/quality.rake
|
113
|
+
- rakelib/repl.rake
|
114
|
+
- rakelib/spec.rake
|
115
|
+
- rakelib/undercover.rake
|
116
|
+
- requirements_dev.txt
|
117
|
+
homepage: https://github.com/apiology/punchlist
|
145
118
|
licenses:
|
146
|
-
- MIT
|
147
|
-
metadata:
|
148
|
-
|
119
|
+
- MIT license
|
120
|
+
metadata:
|
121
|
+
rubygems_mfa_required: 'true'
|
122
|
+
post_install_message:
|
149
123
|
rdoc_options: []
|
150
124
|
require_paths:
|
151
125
|
- lib
|
@@ -153,16 +127,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
153
127
|
requirements:
|
154
128
|
- - ">="
|
155
129
|
- !ruby/object:Gem::Version
|
156
|
-
version: '0'
|
130
|
+
version: '3.0'
|
157
131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
158
132
|
requirements:
|
159
133
|
- - ">="
|
160
134
|
- !ruby/object:Gem::Version
|
161
135
|
version: '0'
|
162
136
|
requirements: []
|
163
|
-
|
164
|
-
|
165
|
-
signing_key:
|
137
|
+
rubygems_version: 3.4.10
|
138
|
+
signing_key:
|
166
139
|
specification_version: 4
|
167
|
-
summary:
|
140
|
+
summary: Counts the number of 'todo' comments in your code
|
168
141
|
test_files: []
|
data/License.txt
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright (c) 2015 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.
|