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
RuboCop has many many breaking changes, because it is before version 1.0.
7
-
So, if you update RuboCop version, in many cases .rubocop.yml breaks...
8
-
This tool supports migrating `.rubocop.yml`. It automatically rename the configuration in your `.rubocop.yml` that is renamed by updating RuboCop. So, with this tool, you do not have to be afraid of updating RuboCop anymore!
7
+
So, if you update your RuboCop version, .rubocop.yml breaks in many cases...
8
+
This tool supports migrating `.rubocop.yml`. It automatically renames the configuration in your `.rubocop.yml` that was renamed by the updated RuboCop version. So, with this tool, you do not have to be afraid of updating RuboCop anymore!
9
9
10
10
## Installation
11
11
@@ -31,15 +31,15 @@ Update `.rubocop.yml` to latest release:
31
31
$ mry .rubocop.yml
32
32
```
33
33
34
-
Update `.rubocop.yml` to version 0.48.0:
34
+
Update `.rubocop.yml` to a specified version:
35
35
36
36
```bash
37
37
$ mry --target=0.51.0 .rubocop.yml
38
38
```
39
39
40
-
And you can specify current RuboCop version.
41
-
If you specify current RuboCop version, mry adds cops that are added in new version RuboCop to your `.rubocop.yml`.
42
-
By this feature, you can check new features of RuboCop with mry.
40
+
And you can specify the current RuboCop version.
41
+
If you specify a new RuboCop version, mry adds cops that were added in this new RuboCop version to your `.rubocop.yml`.
42
+
With this feature, you can check new RuboCop cops with mry.
0 commit comments