rubocop_runner 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4edae991bbf997137f70923de75efa9f962e3bbbef4adf23153b9665647d7ab3
4
- data.tar.gz: 3177e5e82f471687ba7f5bbe1be982ff61009776b5253559e9e796e8426d2459
3
+ metadata.gz: cc1fb64917501d36ae1292c2145187333457d55fb3a572ddc6e9280cf7354648
4
+ data.tar.gz: e56fe6ada3d76fefc901e88250137bf12348a645cd19f33954bbb3417cc673f6
5
5
  SHA512:
6
- metadata.gz: c8af65c62bc28e8f76e8e182031c7db29d0106389a5a5284fb311ede92976aa687b8f9f91b03d55ad3f57956e8de41c3b27ab206c1fcc2225ed9553bf6be62f6
7
- data.tar.gz: b0ecc14943daa0f43b6cc731e5600b0b2843b0ed95d26f2bcbdf39fbb94adee6be5332cf8107d9ff04cd1469db319475538de37e9058e0b11cdabd71b4bb23a6
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubocopRunner
4
- VERSION = '2.2.0'
4
+ VERSION = '2.2.1'
5
5
  end
@@ -58,7 +58,7 @@ module RubocopRunner
58
58
  end
59
59
  end
60
60
 
61
- DEFAULT_ARGS = %w[--auto-correct
61
+ DEFAULT_ARGS = %w[-a
62
62
  --format fuubar
63
63
  --force-exclusion
64
64
  --fail-level autocorrect].freeze
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.0
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: 2019-07-29 00:00:00.000000000 Z
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.0.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: []