rubocop_runner 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +2 -0
- data/lib/rubocop_runner/version.rb +1 -1
- data/lib/rubocop_runner.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc1fb64917501d36ae1292c2145187333457d55fb3a572ddc6e9280cf7354648
|
|
4
|
+
data.tar.gz: e56fe6ada3d76fefc901e88250137bf12348a645cd19f33954bbb3417cc673f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ec946982fb9919685d31e05b5a7dd60bc113e0ea53545c48f4796968f2439899dcd0cffb4cf8e538f5e3ed60369b97e34c41fae281a2dfaf9847938f32612ec
|
|
7
|
+
data.tar.gz: daa5a987b8854978b6107b9f320f8a17950ac97607e105f69733770ba4abf9719f4342cb04871ac7f463c1ccead40f58094140d29e09d9c3bb0ad7aa6d34ec01
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
===
|
|
3
3
|
|
|
4
|
-
|
|
5
4
|
master
|
|
6
5
|
---
|
|
7
6
|
|
|
7
|
+
2.2.1
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
- Update `DEFAULT_ARGS` to use `-a` instead of `--auto-correct` to address the change of the argument name in newer versions of rubocop (1.30.0 and newer) while still supporting older versions of rubocop.
|
|
11
|
+
|
|
8
12
|
2.2.0
|
|
9
13
|
---
|
|
10
14
|
|
data/README.md
CHANGED
|
@@ -61,6 +61,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/runtas
|
|
|
61
61
|
This project is intended to be a safe, welcoming space for collaboration, and
|
|
62
62
|
contributors are expected to adhere to the [code of conduct][cc].
|
|
63
63
|
|
|
64
|
+
Check out our [career page](https://www.runtastic.com/career/) if you'd like to work with us.
|
|
65
|
+
|
|
64
66
|
## License
|
|
65
67
|
The gem is available as open source under [the terms of the MIT License][mit].
|
|
66
68
|
|
data/lib/rubocop_runner.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop_runner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andreas Eger
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -103,7 +103,7 @@ homepage: https://github.com/runtastic/rubocop_runner
|
|
|
103
103
|
licenses:
|
|
104
104
|
- MIT
|
|
105
105
|
metadata: {}
|
|
106
|
-
post_install_message:
|
|
106
|
+
post_install_message:
|
|
107
107
|
rdoc_options: []
|
|
108
108
|
require_paths:
|
|
109
109
|
- lib
|
|
@@ -118,8 +118,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
|
-
rubygems_version: 3.
|
|
122
|
-
signing_key:
|
|
121
|
+
rubygems_version: 3.3.7
|
|
122
|
+
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: runs rubocop for all changed files
|
|
125
125
|
test_files: []
|