QueryPackwerk is a Ruby gem for querying and analyzing Packwerk violations in Ruby applications.
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.
This gem provides a CLI interface that can be used independently from your application.
gem install query_packwerk
You can also make it available in a specific application by adding it to your Gemfile:
bundle add query_packwerk --group=development
The easiest way to use QueryPackwerk is through its interactive console. This will use the local directory Packwerk context and provide you with all QueryPackwerk methods.
query_packwerk console
The CLI includes a welcome message with a list of commands. You can access it any time with welcome
:
query_packwerk:001:0> welcome
Find packages to work with:
# Get a package
query_packwerk:001:0> package("pack_name")
# Get all packages
query_packwerk:001:0> Packages.all
# Find a package
query_packwerk:001:0> Packages.where(name: /service/)
Explore violations:
# Get all violations for a pack
query_packwerk:001:0> violations_for("pack_name")
# Get where violations occurred
query_packwerk:001:0> violation_sources_for("pack_name")
# Get how often violations occurred
query_packwerk:001:0> violation_counts_for("pack_name")
# Get the 'shape' of violations
query_packwerk:001:0> anonymous_violation_sources_for("pack_name")
# Get how often each shape occurs
query_packwerk:001:0> anonymous_violation_counts_for("pack_name")
# Get who consumes this pack
query_packwerk:001:0> consumers("pack_name")
# Get all violations
query_packwerk:001:0> Violations.all
If you change any of the package.yml or package_todo.yml files, you can reload the running console:
# Reset the cache
query_packwerk:001:0> reload!
QueryPackwerk can also be used programmatically from Ruby:
require 'query_packwerk'
# Get all violations for a pack
violations = QueryPackwerk.violations_for("my_pack")
# Get which files are consuming your pack and how many violations each has
consumers = QueryPackwerk.consumers("my_pack")
# Get a count of all violation types
counts = QueryPackwerk.violation_counts_for("my_pack")
Analyze which parts of your codebase are most dependent on a package:
# Find the top 5 consumers of your package
QueryPackwerk.consumers("my_pack").sort_by { |_, count| -count }.first(5)
Find the most common violation patterns:
# Get anonymized violation patterns with a threshold of at least 3 occurrences
QueryPackwerk.anonymous_violation_counts_for("my_pack", threshold: 3)
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.
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.
Bug reports and pull requests are welcome on GitHub at https://github.com/rubyatscale/query_packwerk.
The gem is available as open source under the terms of the MIT License.