runger_style 1.6.0 → 1.7.0

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: 4746727aca126ddc33121393689b31bbd73461803e60fb570a34cf87c5e491b7
4
- data.tar.gz: d6e032c7e00a6cc85d0cdfb8c532a617401b304f0140275dea7a41ecc57463b1
3
+ metadata.gz: faf06fa82a04ece0c3e4e5552fad9beada9bbb1f86df52e3ab5dcbba2544f2f5
4
+ data.tar.gz: 6afd86dda1044dac2c8276fd8f45aa7210f74d5e9ae47a6e66936554bb1b477c
5
5
  SHA512:
6
- metadata.gz: 40d7784a658851880ab5a6e6ea9ad1a6f3a5333ca38efe8da249c71fc2afd1c433741b036cb134f314b45ff48f8d4e1baa66c504b828330fd506e7f26a3d91e5
7
- data.tar.gz: a7c568cc3a58e50efbbcaf209ff42d6d25ef7a5cf09c30d1fe0bb1b43e5ca0d0b7542b5fccbefd3b036b501c71efc5b34cf4d8a3b56b2fc44ab904cabf189fa9
6
+ metadata.gz: 24b2e86bdbf2dcfd60310922a978603b9781892a873f8dd8a578742b7fe4255f5214fe073671138920e095faf81d6ddc0c6ea50f4d92f40c54aa305b01b0e752
7
+ data.tar.gz: e36d6a6572f43ad8fd4b88fb8173561148441653dd850e0b638d3df5e66e2584266978e3b27bb007ab7624e3caad76d9f5a1f8db47853318aa0d806431d14636
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v1.7.0 (2024-02-28)
2
+ - Enable `Style/Semicolon` with `AllowAsExpressionSeparator: true`
3
+
1
4
  ## v1.6.0 (2024-02-02)
2
5
  - Specify Ruby version in Gemfile (via .ruby-version file)
3
6
 
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- runger_style (1.6.0)
4
+ runger_style (1.7.0)
5
5
  rubocop (>= 1.38.0, < 2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (7.1.2)
10
+ activesupport (7.1.3)
11
11
  base64
12
12
  bigdecimal
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -19,8 +19,8 @@ GEM
19
19
  tzinfo (~> 2.0)
20
20
  ast (2.4.2)
21
21
  base64 (0.2.0)
22
- bigdecimal (3.1.5)
23
- concurrent-ruby (1.2.2)
22
+ bigdecimal (3.1.6)
23
+ concurrent-ruby (1.2.3)
24
24
  connection_pool (2.4.1)
25
25
  drb (2.2.0)
26
26
  ruby2_keywords
@@ -28,15 +28,15 @@ GEM
28
28
  concurrent-ruby (~> 1.0)
29
29
  json (2.7.1)
30
30
  language_server-protocol (3.17.0.3)
31
- memo_wise (1.7.0)
32
- minitest (5.20.0)
31
+ memo_wise (1.8.0)
32
+ minitest (5.21.2)
33
33
  mutex_m (0.2.0)
34
34
  parallel (1.24.0)
35
35
  parser (3.3.0.5)
36
36
  ast (~> 2.4.1)
37
37
  racc
38
38
  racc (1.7.3)
39
- rack (3.0.8)
39
+ rack (3.0.9.1)
40
40
  rainbow (3.1.1)
41
41
  rake (13.1.0)
42
42
  regexp_parser (2.9.0)
@@ -74,7 +74,7 @@ GEM
74
74
  rubocop-factory_bot (~> 2.22)
75
75
  ruby-progressbar (1.13.0)
76
76
  ruby2_keywords (0.0.5)
77
- runger_release_assistant (0.5.0)
77
+ runger_release_assistant (0.6.0)
78
78
  activesupport (>= 6, < 8)
79
79
  memo_wise (>= 1.7, < 2)
80
80
  rainbow (>= 3.0, < 4)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RungerStyle
4
- VERSION = '1.6.0'
4
+ VERSION = '1.7.0'
5
5
  end
data/rulesets/default.yml CHANGED
@@ -212,7 +212,8 @@ Style/RescueStandardError:
212
212
  Style/ReturnNil:
213
213
  Enabled: false
214
214
  Style/Semicolon:
215
- Enabled: false
215
+ AllowAsExpressionSeparator: true
216
+ Enabled: true
216
217
  Style/Send:
217
218
  Exclude:
218
219
  - spec/**/*.rb
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runger_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Runger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-02 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop