query_packwerk 0.1.0
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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +90 -0
- data/CHANGELOG.md +1 -0
- data/CODE_OF_CONDUCT.md +131 -0
- data/LICENSE.txt +21 -0
- data/README.md +108 -0
- data/exe/query_packwerk +7 -0
- data/lib/query_packwerk/cli.rb +19 -0
- data/lib/query_packwerk/console.rb +65 -0
- data/lib/query_packwerk/console_helpers.rb +144 -0
- data/lib/query_packwerk/file_cache.rb +160 -0
- data/lib/query_packwerk/package.rb +129 -0
- data/lib/query_packwerk/packages.rb +78 -0
- data/lib/query_packwerk/query_interface.rb +268 -0
- data/lib/query_packwerk/rule_rewriter/anonymize_arguments_rule.rb +31 -0
- data/lib/query_packwerk/rule_rewriter/anonymize_keyword_arguments_rule.rb +30 -0
- data/lib/query_packwerk/rule_rewriter/base_rule.rb +30 -0
- data/lib/query_packwerk/rule_rewriter/rule_set_rewriter.rb +56 -0
- data/lib/query_packwerk/rule_rewriter.rb +22 -0
- data/lib/query_packwerk/version.rb +6 -0
- data/lib/query_packwerk/violation.rb +295 -0
- data/lib/query_packwerk/violations.rb +270 -0
- data/lib/query_packwerk.rb +92 -0
- data/sig/query_packwerk.rbs +4 -0
- metadata +153 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 69878aa37cf34d0896f727625f444787cf166db630cf8334109eccbd61cc40a9
|
4
|
+
data.tar.gz: ba722634ea12a50ea7473bb976567af174a40e14c5ba9aa0b12d782c8e92b49e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ad07eb416e3993dbbe823dd2305afbb86fc52c0e0ec652482a58f0058f60330bc5a16ecb969f9356bcc13eb52a669e58ea094eaf4c9486097fbc7862fd8b671b
|
7
|
+
data.tar.gz: 42115b541cc33e22658978aec000c83ce3d8db9385bcd7671e111c0629537be3dda33bcce9909a5b88d9e9c21a15ecce4af74d948aa2ea96d64583cefbd5c7b2
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
plugins:
|
2
|
+
- rubocop-sorbet
|
3
|
+
- rubocop-performance
|
4
|
+
|
5
|
+
AllCops:
|
6
|
+
TargetRubyVersion: 3.1
|
7
|
+
SuggestExtensions: false
|
8
|
+
NewCops: enable
|
9
|
+
Exclude:
|
10
|
+
- bin/**/*
|
11
|
+
- vendor/**/*
|
12
|
+
|
13
|
+
Sorbet/StrictSigil:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
Layout/ExtraSpacing:
|
17
|
+
Enabled: true
|
18
|
+
Exclude:
|
19
|
+
- danger-packwerk.gemspec
|
20
|
+
|
21
|
+
Layout/SpaceAroundOperators:
|
22
|
+
Enabled: true
|
23
|
+
Exclude:
|
24
|
+
- danger-packwerk.gemspec
|
25
|
+
|
26
|
+
Sorbet/ValidSigil:
|
27
|
+
Enabled: true
|
28
|
+
|
29
|
+
Gemspec/RequireMFA:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
Layout/LineLength:
|
33
|
+
Enabled: false
|
34
|
+
|
35
|
+
Metrics/BlockLength:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
Style/Documentation:
|
39
|
+
Enabled: false
|
40
|
+
|
41
|
+
Style/SignalException:
|
42
|
+
Enabled: false
|
43
|
+
|
44
|
+
Style/FrozenStringLiteralComment:
|
45
|
+
Enabled: false
|
46
|
+
|
47
|
+
Style/MultilineBlockChain:
|
48
|
+
Enabled: false
|
49
|
+
|
50
|
+
Metrics/MethodLength:
|
51
|
+
Enabled: false
|
52
|
+
|
53
|
+
Metrics/CyclomaticComplexity:
|
54
|
+
Enabled: false
|
55
|
+
|
56
|
+
Metrics/ModuleLength:
|
57
|
+
Enabled: false
|
58
|
+
|
59
|
+
Metrics/ClassLength:
|
60
|
+
Enabled: false
|
61
|
+
|
62
|
+
Sorbet/FalseSigil:
|
63
|
+
Enabled: false
|
64
|
+
|
65
|
+
Lint/UnusedMethodArgument:
|
66
|
+
Enabled: false
|
67
|
+
|
68
|
+
Metrics/AbcSize:
|
69
|
+
Enabled: false
|
70
|
+
|
71
|
+
Style/GuardClause:
|
72
|
+
Enabled: false
|
73
|
+
|
74
|
+
Style/NumericPredicate:
|
75
|
+
Enabled: false
|
76
|
+
|
77
|
+
Metrics/PerceivedComplexity:
|
78
|
+
Enabled: false
|
79
|
+
|
80
|
+
Metrics/ParameterLists:
|
81
|
+
Enabled: false
|
82
|
+
|
83
|
+
Style/SuperArguments:
|
84
|
+
Enabled: false
|
85
|
+
|
86
|
+
Style/ArgumentsForwarding:
|
87
|
+
Enabled: false
|
88
|
+
|
89
|
+
Style/BlockForwarding:
|
90
|
+
Enabled: false
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
See https://github.com/rubyatscale/query_packwerk/releases
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,131 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
10
|
+
identity and orientation.
|
11
|
+
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
+
diverse, inclusive, and healthy community.
|
14
|
+
|
15
|
+
## Our Standards
|
16
|
+
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
18
|
+
community include:
|
19
|
+
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
+
and learning from the experience
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
26
|
+
community
|
27
|
+
|
28
|
+
Examples of unacceptable behavior include:
|
29
|
+
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
31
|
+
any kind
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
|
+
* Public or private harassment
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
35
|
+
without their explicit permission
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
37
|
+
professional setting
|
38
|
+
|
39
|
+
## Enforcement Responsibilities
|
40
|
+
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
44
|
+
or harmful.
|
45
|
+
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
49
|
+
decisions when appropriate.
|
50
|
+
|
51
|
+
## Scope
|
52
|
+
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
54
|
+
an individual is officially representing the community in public spaces.
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
56
|
+
posting via an official social media account, or acting as an appointed
|
57
|
+
representative at an online or offline event.
|
58
|
+
|
59
|
+
## Enforcement
|
60
|
+
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62
|
+
reported to the community leaders responsible for enforcement at rubyatscale@gusto.com.
|
63
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
64
|
+
|
65
|
+
All community leaders are obligated to respect the privacy and security of the
|
66
|
+
reporter of any incident.
|
67
|
+
|
68
|
+
## Enforcement Guidelines
|
69
|
+
|
70
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
71
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
72
|
+
|
73
|
+
### 1. Correction
|
74
|
+
|
75
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
76
|
+
unprofessional or unwelcome in the community.
|
77
|
+
|
78
|
+
**Consequence**: A private, written warning from community leaders, providing
|
79
|
+
clarity around the nature of the violation and an explanation of why the
|
80
|
+
behavior was inappropriate. A public apology may be requested.
|
81
|
+
|
82
|
+
### 2. Warning
|
83
|
+
|
84
|
+
**Community Impact**: A violation through a single incident or series of
|
85
|
+
actions.
|
86
|
+
|
87
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
88
|
+
interaction with the people involved, including unsolicited interaction with
|
89
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
90
|
+
includes avoiding interactions in community spaces as well as external channels
|
91
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
92
|
+
ban.
|
93
|
+
|
94
|
+
### 3. Temporary Ban
|
95
|
+
|
96
|
+
**Community Impact**: A serious violation of community standards, including
|
97
|
+
sustained inappropriate behavior.
|
98
|
+
|
99
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
100
|
+
communication with the community for a specified period of time. No public or
|
101
|
+
private interaction with the people involved, including unsolicited interaction
|
102
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
103
|
+
Violating these terms may lead to a permanent ban.
|
104
|
+
|
105
|
+
### 4. Permanent Ban
|
106
|
+
|
107
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
108
|
+
standards, including sustained inappropriate behavior, harassment of an
|
109
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
110
|
+
|
111
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
112
|
+
community.
|
113
|
+
|
114
|
+
## Attribution
|
115
|
+
|
116
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
117
|
+
version 2.1, available at
|
118
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
119
|
+
|
120
|
+
Community Impact Guidelines were inspired by
|
121
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
122
|
+
|
123
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
124
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
125
|
+
[https://www.contributor-covenant.org/translations][translations].
|
126
|
+
|
127
|
+
[homepage]: https://www.contributor-covenant.org
|
128
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
129
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
130
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
131
|
+
[translations]: https://www.contributor-covenant.org/translations
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2025 Gusto
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
# QueryPackwerk
|
2
|
+
|
3
|
+
QueryPackwerk is a Ruby gem for querying and analyzing Packwerk violations in Ruby applications.
|
4
|
+
It provides a friendly API for exploring package.yml and package_todo.yml files, making it easier to manage module boundaries and dependencies in your codebase.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Install the gem and add to the application's Gemfile by executing:
|
9
|
+
|
10
|
+
```bash
|
11
|
+
bundle add query_packwerk
|
12
|
+
```
|
13
|
+
|
14
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
15
|
+
|
16
|
+
```bash
|
17
|
+
gem install query_packwerk
|
18
|
+
```
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
### Console Interface
|
23
|
+
|
24
|
+
The easiest way to use QueryPackwerk is through its interactive console:
|
25
|
+
|
26
|
+
```bash
|
27
|
+
query_packwerk console
|
28
|
+
```
|
29
|
+
|
30
|
+
This will load the Packwerk context from your current directory and provide you with an interactive Ruby console with QueryPackwerk methods available.
|
31
|
+
|
32
|
+
Available commands in the console:
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
# Get all violations for a pack
|
36
|
+
violations_for("pack_name")
|
37
|
+
|
38
|
+
# Get where violations occurred
|
39
|
+
violation_sources_for("pack_name")
|
40
|
+
|
41
|
+
# Get how often violations occurred
|
42
|
+
violation_counts_for("pack_name")
|
43
|
+
|
44
|
+
# Get the 'shape' of violations
|
45
|
+
anonymous_violation_sources_for("pack_name")
|
46
|
+
|
47
|
+
# Get how often each shape occurs
|
48
|
+
anonymous_violation_counts_for("pack_name")
|
49
|
+
|
50
|
+
# Get who consumes this pack
|
51
|
+
consumers("pack_name")
|
52
|
+
|
53
|
+
# Get all packages
|
54
|
+
Packages.all
|
55
|
+
|
56
|
+
# Get all violations
|
57
|
+
Violations.all
|
58
|
+
|
59
|
+
# Reset the cache
|
60
|
+
reload!
|
61
|
+
```
|
62
|
+
|
63
|
+
### Ruby API
|
64
|
+
|
65
|
+
You can also use QueryPackwerk programmatically in your Ruby code:
|
66
|
+
|
67
|
+
```ruby
|
68
|
+
require 'query_packwerk'
|
69
|
+
|
70
|
+
# Get all violations for a pack
|
71
|
+
violations = QueryPackwerk.violations_for("my_pack")
|
72
|
+
|
73
|
+
# Get which files are consuming your pack and how many violations each has
|
74
|
+
consumers = QueryPackwerk.consumers("my_pack")
|
75
|
+
|
76
|
+
# Get a count of all violation types
|
77
|
+
counts = QueryPackwerk.violation_counts_for("my_pack")
|
78
|
+
```
|
79
|
+
|
80
|
+
## Examples
|
81
|
+
|
82
|
+
Analyze which parts of your codebase are most dependent on a package:
|
83
|
+
|
84
|
+
```ruby
|
85
|
+
# Find the top 5 consumers of your package
|
86
|
+
QueryPackwerk.consumers("my_pack").sort_by { |_, count| -count }.first(5)
|
87
|
+
```
|
88
|
+
|
89
|
+
Find the most common violation patterns:
|
90
|
+
|
91
|
+
```ruby
|
92
|
+
# Get anonymized violation patterns with a threshold of at least 3 occurrences
|
93
|
+
QueryPackwerk.anonymous_violation_counts_for("my_pack", threshold: 3)
|
94
|
+
```
|
95
|
+
|
96
|
+
## Development
|
97
|
+
|
98
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
99
|
+
|
100
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
101
|
+
|
102
|
+
## Contributing
|
103
|
+
|
104
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/martinemde/query_packwerk.
|
105
|
+
|
106
|
+
## License
|
107
|
+
|
108
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/exe/query_packwerk
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# typed: strict
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
|
5
|
+
module QueryPackwerk
|
6
|
+
# CLI for loading the QueryPackwerk console
|
7
|
+
class CLI < Thor
|
8
|
+
extend T::Sig
|
9
|
+
|
10
|
+
default_command :console
|
11
|
+
|
12
|
+
desc 'console',
|
13
|
+
'Query packwerk in the current directory via console'
|
14
|
+
sig { params(directory: String).void }
|
15
|
+
def console(directory = Dir.pwd)
|
16
|
+
QueryPackwerk::Console.start(directory)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# typed: strict
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'irb'
|
5
|
+
require 'irb/completion'
|
6
|
+
|
7
|
+
module QueryPackwerk
|
8
|
+
# Console for QueryPackwerk
|
9
|
+
class Console
|
10
|
+
extend T::Sig
|
11
|
+
|
12
|
+
sig { params(directory: String).void }
|
13
|
+
def self.start(directory = Dir.pwd)
|
14
|
+
puts "Loading packwerk context in #{directory}..."
|
15
|
+
|
16
|
+
Dir.chdir(directory) do
|
17
|
+
# Start IRB with current context
|
18
|
+
# https://github.com/cucumber/aruba/blob/main/lib/aruba/console.rb
|
19
|
+
ARGV.clear
|
20
|
+
|
21
|
+
require 'irb'
|
22
|
+
IRB.setup nil
|
23
|
+
|
24
|
+
IRB.conf[:IRB_NAME] = 'query_packwerk'
|
25
|
+
|
26
|
+
IRB.conf[:PROMPT] = {}
|
27
|
+
IRB.conf[:PROMPT][:QUERY_PACKWERK] = {
|
28
|
+
PROMPT_I: '%N:%03n:%i> ',
|
29
|
+
PROMPT_S: '%N:%03n:%i%l ',
|
30
|
+
PROMPT_C: '%N:%03n:%i* ',
|
31
|
+
RETURN: "# => %s\n"
|
32
|
+
}
|
33
|
+
IRB.conf[:PROMPT_MODE] = :QUERY_PACKWERK
|
34
|
+
|
35
|
+
IRB.conf[:RC] = false
|
36
|
+
|
37
|
+
require 'irb/completion'
|
38
|
+
IRB.conf[:READLINE] = true
|
39
|
+
IRB.conf[:SAVE_HISTORY] = 1000
|
40
|
+
IRB.conf[:HISTORY_FILE] = "#{directory}/.query_packwerk_history"
|
41
|
+
|
42
|
+
context = Class.new do
|
43
|
+
include QueryPackwerk
|
44
|
+
include QueryPackwerk::ConsoleHelpers
|
45
|
+
extend T::Sig
|
46
|
+
end
|
47
|
+
|
48
|
+
context_instance = context.new
|
49
|
+
irb = IRB::Irb.new(IRB::WorkSpace.new(context_instance))
|
50
|
+
IRB.conf[:MAIN_CONTEXT] = irb.context
|
51
|
+
|
52
|
+
context_instance.welcome
|
53
|
+
|
54
|
+
trap('SIGINT') do
|
55
|
+
irb.signal_handle
|
56
|
+
end
|
57
|
+
|
58
|
+
catch(:IRB_EXIT) do
|
59
|
+
irb.eval_input
|
60
|
+
end
|
61
|
+
Kernel.exit
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,144 @@
|
|
1
|
+
# typed: true
|
2
|
+
|
3
|
+
module QueryPackwerk::ConsoleHelpers
|
4
|
+
extend T::Sig
|
5
|
+
|
6
|
+
sig { returns(String) }
|
7
|
+
def inspect
|
8
|
+
'query_packwerk console'
|
9
|
+
end
|
10
|
+
|
11
|
+
sig { returns(NilClass) } # returning nil is less ugly in the console.
|
12
|
+
def welcome
|
13
|
+
help_query_packwerk
|
14
|
+
puts
|
15
|
+
help_help
|
16
|
+
end
|
17
|
+
|
18
|
+
sig { params(type: T.nilable(T.any(String, Symbol))).returns(NilClass) }
|
19
|
+
def help(type = nil)
|
20
|
+
case type.to_s.downcase
|
21
|
+
when 'violation'
|
22
|
+
help_violation
|
23
|
+
when 'violations'
|
24
|
+
help_violations
|
25
|
+
when 'package'
|
26
|
+
help_package
|
27
|
+
when 'packages'
|
28
|
+
help_packages
|
29
|
+
when '', 'help'
|
30
|
+
help_help
|
31
|
+
else
|
32
|
+
puts "Unknown help topic: #{type}\n"
|
33
|
+
help_help
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
sig { returns(NilClass) }
|
38
|
+
def help_help
|
39
|
+
puts <<~HELP
|
40
|
+
Available help topics:
|
41
|
+
help # This help
|
42
|
+
help_violation # Help for QueryPackwerk::Violation
|
43
|
+
help_violations # Help for QueryPackwerk::Violations
|
44
|
+
help_package # Help for QueryPackwerk::Package
|
45
|
+
help_packages # Help for QueryPackwerk::Packages
|
46
|
+
HELP
|
47
|
+
end
|
48
|
+
|
49
|
+
sig { returns(NilClass) }
|
50
|
+
def help_violation
|
51
|
+
puts <<~HELP
|
52
|
+
QueryPackwerk::Violation (lib/query_packwerk/violation.rb)
|
53
|
+
------------------------------------------------
|
54
|
+
.type # Returns the violation type ('privacy' or 'dependency')
|
55
|
+
.class_name # Returns the violated constant name
|
56
|
+
.files # Returns array of files containing the violation
|
57
|
+
.producing_pack # Returns the Package that owns the violated constant
|
58
|
+
.consuming_pack # Returns the Package that violated the constant
|
59
|
+
.sources # Returns array of AST nodes representing the violation occurrences
|
60
|
+
.sources_with_locations # Returns array of [file:line, source] pairs for each violation
|
61
|
+
.source_counts # Returns hash of how often each violation source occurs
|
62
|
+
.anonymous_sources # Returns array of violation sources with arguments anonymized
|
63
|
+
.anonymous_sources_with_locations # Returns array of [file:line, source] pairs for each violation with arguments anonymized
|
64
|
+
.count # Returns total number of violation occurrences
|
65
|
+
HELP
|
66
|
+
end
|
67
|
+
|
68
|
+
sig { returns(NilClass) }
|
69
|
+
def help_violations
|
70
|
+
puts <<~HELP
|
71
|
+
QueryPackwerk::Violations (lib/query_packwerk/violations.rb)
|
72
|
+
--------------------------------------------------
|
73
|
+
.where(conditions) # Returns new Violations filtered by conditions
|
74
|
+
.raw_sources # Returns hash of constant => AST nodes for all violations
|
75
|
+
.sources # Returns hash of constant => source strings for all violations
|
76
|
+
.sources_with_locations # Returns hash of constant => [file:line, source] pairs
|
77
|
+
.source_counts # Returns hash of constant => {source => count} with occurrence counts
|
78
|
+
.sources_with_contexts # Returns hash of constant => [file:line, source] pairs for each violation with context
|
79
|
+
.anonymous_sources # Returns hash of constant => anonymized sources
|
80
|
+
.anonymous_sources_with_locations # Returns array of [file:line, source] pairs for each violation with arguments anonymized
|
81
|
+
.consumers(threshold) # Returns hash of consuming package names and violation counts
|
82
|
+
.producers(threshold) # Returns hash of producing package names and violation counts
|
83
|
+
.including_files(globs) # Returns new Violations filtered to include specific files
|
84
|
+
.excluding_files(globs) # Returns new Violations filtered to exclude specific files
|
85
|
+
HELP
|
86
|
+
end
|
87
|
+
|
88
|
+
sig { returns(NilClass) }
|
89
|
+
def help_package
|
90
|
+
puts <<~HELP
|
91
|
+
QueryPackwerk::Package (lib/query_packwerk/package.rb)
|
92
|
+
----------------------------------------------
|
93
|
+
.name # Returns the package name
|
94
|
+
.enforce_dependencies # Returns whether package enforces dependencies
|
95
|
+
.enforce_privacy # Returns whether package enforces privacy
|
96
|
+
.metadata # Returns the package metadata from package.yml
|
97
|
+
.config # Returns the package configuration
|
98
|
+
.dependencies # Returns Packages collection of dependencies
|
99
|
+
.dependency_names # Returns array of dependency package names
|
100
|
+
.owner # Returns the package owner or 'Unowned'
|
101
|
+
.directory # Returns the package directory path
|
102
|
+
.todos # Returns Violations where this package is the consumer
|
103
|
+
.violations # Returns Violations where this package is the producer
|
104
|
+
.consumers # Returns Packages that consume this package
|
105
|
+
.consumer_names # Returns array of names of consuming packages
|
106
|
+
.consumer_counts # Returns hash of consumer package names and counts
|
107
|
+
HELP
|
108
|
+
end
|
109
|
+
|
110
|
+
sig { returns(NilClass) }
|
111
|
+
def help_packages
|
112
|
+
puts <<~HELP
|
113
|
+
QueryPackwerk::Packages (lib/query_packwerk/packages.rb)
|
114
|
+
------------------------------------------------
|
115
|
+
.all # Returns all packages in the application
|
116
|
+
.where(conditions) # Returns new Packages filtered by conditions
|
117
|
+
.violations # Returns Violations for all packages in collection
|
118
|
+
HELP
|
119
|
+
end
|
120
|
+
|
121
|
+
sig { returns(NilClass) }
|
122
|
+
def help_query_packwerk
|
123
|
+
puts <<~HELP
|
124
|
+
QueryPackwerk (lib/query_packwerk.rb)
|
125
|
+
------------------------------
|
126
|
+
Available commands:
|
127
|
+
package(pack_name) # Get a package by name
|
128
|
+
Packages.all # Get all packages
|
129
|
+
|
130
|
+
Package Consumption (how others use this package):
|
131
|
+
violations_for(pack_name) # Get all violations where others access this package
|
132
|
+
violation_sources_for(pack_name) # Get where others access this package
|
133
|
+
violation_counts_for(pack_name) # Get how often others access this package
|
134
|
+
anonymous_violation_sources_for(pack_name) # Get the 'shape' of how others access this package
|
135
|
+
anonymous_violation_counts_for(pack_name) # Get how often each access pattern occurs
|
136
|
+
consumers(pack_name) # Get which packages consume this package
|
137
|
+
|
138
|
+
Package Dependencies (how this package uses others):
|
139
|
+
todos_for(pack_name) # Get all todos where this package accesses others
|
140
|
+
|
141
|
+
Violations.all # Get all violations
|
142
|
+
HELP
|
143
|
+
end
|
144
|
+
end
|