You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While developing rubocop/rubocop#13792,
I noticed that `LintRoller::Plugin` lacks a string representation.
For example, in RuboCop, there is a feature to display a list of plugins using the `rubocop -V` command:
```console
$ bundle exec rubocop -V
1.71.2 (using Parser 3.3.7.0, rubocop-ast 1.38.0, analyzing as Ruby 2.7, running on ruby 3.4.1) [x86_64-darwin23]
- rubocop-performance 1.23.1
- rubocop-rake 0.6.0
- rubocop-rspec 3.4.0
```
In cases like this, having a string representation would simplify things.
I'm not sure what the best string representation would be, but I have chosen to include the name and version as
they provide the minimal and most easily identifiable details.
0 commit comments