@@ -92,22 +92,23 @@ $ bundle exec yard doc --no-cache
92
92
$ bin/yard doc --no-cache
93
93
```
94
94
95
- ## Rubocop
95
+ ## RuboCop
96
96
97
- We use [Rubocop](https://github.com/bbatsov/rubocop) to enforce style conventions on the project so
98
- that the code has stylistic consistency throughout. Run with:
97
+ We use [RuboCop](https://github.com/rubocop-hq/rubocop) to enforce style
98
+ conventions on the project so that the code has stylistic consistency
99
+ throughout. Run with:
99
100
100
101
```
101
- $ bundle exec rubocop lib
102
+ $ bundle exec rubocop
102
103
103
104
# or, if you installed your bundle with `--standalone --binstubs`:
104
105
105
- $ bin/rubocop lib
106
+ $ bin/rubocop
106
107
```
107
108
108
- Our Rubocop configuration is a work-in-progress, so if you get a failure
109
- due to a Rubocop default, feel free to ask about changing the
110
- configuration. Otherwise, you'll need to address the Rubocop failure,
109
+ Our RuboCop configuration is a work-in-progress, so if you get a failure
110
+ due to a RuboCop default, feel free to ask about changing the
111
+ configuration. Otherwise, you'll need to address the RuboCop failure,
111
112
or, as a measure of last resort, by wrapping the offending code in
112
113
comments like `# rubocop:disable SomeCheck` and `# rubocop:enable SomeCheck`.
113
114
@@ -141,4 +142,3 @@ build for another repo, so our CI build includes a spec that runs the
141
142
spec suite of each of the _other_ project repos. Note that we only run
142
143
the spec suite, not the full build, of the other projects, as the spec
143
144
suite runs very quickly compared to the full build.
144
-
0 commit comments