runger_style 1.5.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: fe0e2bc8fc00aedce84ee675539ed9dbddb8934aa02c69a14c1bde870181319b
4
- data.tar.gz: a343783ff9de13d8f86c3bc2bb40cbc4913f349bc0ef79748b015899440c2600
3
+ metadata.gz: faf06fa82a04ece0c3e4e5552fad9beada9bbb1f86df52e3ab5dcbba2544f2f5
4
+ data.tar.gz: 6afd86dda1044dac2c8276fd8f45aa7210f74d5e9ae47a6e66936554bb1b477c
5
5
  SHA512:
6
- metadata.gz: 9d7ab5b4d2a18b65580ae94db6ee7a50b5122e5422d8d957a974cac0cbab6e683ffd979680c931aaeba2cfa2ab7bba09279498649f43bf1d13680d38932510e1
7
- data.tar.gz: 78fb69b8d920122094f18c1dfb67aabd01dd6eba5531e38c22f0a1c23c2620d9de7dd2c2c3f8c73b5e6d085e42ba5507382224022a8c4a37d7589280d66b7444
6
+ metadata.gz: 24b2e86bdbf2dcfd60310922a978603b9781892a873f8dd8a578742b7fe4255f5214fe073671138920e095faf81d6ddc0c6ea50f4d92f40c54aa305b01b0e752
7
+ data.tar.gz: e36d6a6572f43ad8fd4b88fb8173561148441653dd850e0b638d3df5e66e2584266978e3b27bb007ab7624e3caad76d9f5a1f8db47853318aa0d806431d14636
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v1.7.0 (2024-02-28)
2
+ - Enable `Style/Semicolon` with `AllowAsExpressionSeparator: true`
3
+
4
+ ## v1.6.0 (2024-02-02)
5
+ - Specify Ruby version in Gemfile (via .ruby-version file)
6
+
1
7
  ## v1.5.0 (2024-02-02)
2
8
  - Source Ruby version from `.ruby-version` file
3
9
 
data/Gemfile CHANGED
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ ruby file: '.ruby-version'
4
+
3
5
  source 'https://rubygems.org'
4
6
 
5
7
  gemspec
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- runger_style (1.5.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)
@@ -99,5 +99,8 @@ DEPENDENCIES
99
99
  runger_release_assistant
100
100
  runger_style!
101
101
 
102
+ RUBY VERSION
103
+ ruby 3.3.0p0
104
+
102
105
  BUNDLED WITH
103
- 2.4.13
106
+ 2.5.5
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RungerStyle
4
- VERSION = '1.5.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.5.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