An open API service indexing awesome lists of open source software.

https://github.com/rubyatscale/query_packwerk

Query details about Packwerk violations and dependencies using code or an interactive console
https://github.com/rubyatscale/query_packwerk

packwerk ruby

Last synced: 10 months ago
JSON representation

Query details about Packwerk violations and dependencies using code or an interactive console

Awesome Lists containing this project

README

          

# QueryPackwerk

QueryPackwerk is a Ruby gem for querying and analyzing [Packwerk](https://github.com/Shopify/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.

## Installation

This gem provides a CLI interface that can be used independently from your application.

```bash
gem install query_packwerk
```

You can also make it available in a specific application by adding it to your Gemfile:

```bash
bundle add query_packwerk --group=development
```

## Usage

### Console Interface

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.

```bash
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:

```ruby
# 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:

```ruby
# 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:

```ruby
# Reset the cache
query_packwerk:001:0> reload!
```

### Ruby API

QueryPackwerk can also be used programmatically from Ruby:

```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")
```

## Examples

Analyze which parts of your codebase are most dependent on a package:

```ruby
# Find the top 5 consumers of your package
QueryPackwerk.consumers("my_pack").sort_by { |_, count| -count }.first(5)
```

Find the most common violation patterns:

```ruby
# Get anonymized violation patterns with a threshold of at least 3 occurrences
QueryPackwerk.anonymous_violation_counts_for("my_pack", threshold: 3)
```

## Development

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](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rubyatscale/query_packwerk.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).