runger_style 1.7.0 → 2.0.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: faf06fa82a04ece0c3e4e5552fad9beada9bbb1f86df52e3ab5dcbba2544f2f5
4
- data.tar.gz: 6afd86dda1044dac2c8276fd8f45aa7210f74d5e9ae47a6e66936554bb1b477c
3
+ metadata.gz: cbe8e11717e697ae28b98b5cb6c8cf7c0ca3f34a4f2571aeec82e23f1c65000e
4
+ data.tar.gz: 708521243629b416680f1dba060e97a51f4c7ba8ec02dcdb8839b0eaad90769a
5
5
  SHA512:
6
- metadata.gz: 24b2e86bdbf2dcfd60310922a978603b9781892a873f8dd8a578742b7fe4255f5214fe073671138920e095faf81d6ddc0c6ea50f4d92f40c54aa305b01b0e752
7
- data.tar.gz: e36d6a6572f43ad8fd4b88fb8173561148441653dd850e0b638d3df5e66e2584266978e3b27bb007ab7624e3caad76d9f5a1f8db47853318aa0d806431d14636
6
+ metadata.gz: f1c50e622f0a9794ae8d9c2476c2fa7447758faf25039b512117723ab299e7c4d07e2a3cbfb51d4901f241c83ef7479489b1614527a2ac447a6e9e65914cdff0
7
+ data.tar.gz: 8482982b9cd3e673dc4984f05db15da0dcf8d57e76414ee945b8eff762b1ffe59a58aaea1d37299e69652df88b5a6c79ce1707516b9080a93fd2a32fdb07c491
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v2.0.0 (2024-03-08)
2
+ - Use prism as parser
3
+
1
4
  ## v1.7.0 (2024-02-28)
2
5
  - Enable `Style/Semicolon` with `AllowAsExpressionSeparator: true`
3
6
 
data/Gemfile.lock CHANGED
@@ -1,13 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- runger_style (1.7.0)
4
+ runger_style (2.0.0)
5
+ prism (>= 0.24.0)
5
6
  rubocop (>= 1.38.0, < 2)
6
7
 
7
8
  GEM
8
9
  remote: https://rubygems.org/
9
10
  specs:
10
- activesupport (7.1.3)
11
+ activesupport (7.1.3.2)
11
12
  base64
12
13
  bigdecimal
13
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -22,19 +23,19 @@ GEM
22
23
  bigdecimal (3.1.6)
23
24
  concurrent-ruby (1.2.3)
24
25
  connection_pool (2.4.1)
25
- drb (2.2.0)
26
- ruby2_keywords
26
+ drb (2.2.1)
27
27
  i18n (1.14.1)
28
28
  concurrent-ruby (~> 1.0)
29
29
  json (2.7.1)
30
30
  language_server-protocol (3.17.0.3)
31
31
  memo_wise (1.8.0)
32
- minitest (5.21.2)
32
+ minitest (5.22.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
+ prism (0.24.0)
38
39
  racc (1.7.3)
39
40
  rack (3.0.9.1)
40
41
  rainbow (3.1.1)
@@ -52,8 +53,8 @@ GEM
52
53
  rubocop-ast (>= 1.30.0, < 2.0)
53
54
  ruby-progressbar (~> 1.7)
54
55
  unicode-display_width (>= 2.4.0, < 3.0)
55
- rubocop-ast (1.30.0)
56
- parser (>= 3.2.1.0)
56
+ rubocop-ast (1.31.1)
57
+ parser (>= 3.3.0.4)
57
58
  rubocop-capybara (2.20.0)
58
59
  rubocop (~> 1.41)
59
60
  rubocop-factory_bot (2.25.1)
@@ -61,19 +62,18 @@ GEM
61
62
  rubocop-performance (1.20.2)
62
63
  rubocop (>= 1.48.1, < 2.0)
63
64
  rubocop-ast (>= 1.30.0, < 2.0)
64
- rubocop-rails (2.23.1)
65
+ rubocop-rails (2.24.0)
65
66
  activesupport (>= 4.2.0)
66
67
  rack (>= 1.1)
67
68
  rubocop (>= 1.33.0, < 2.0)
68
- rubocop-ast (>= 1.30.0, < 2.0)
69
+ rubocop-ast (>= 1.31.1, < 2.0)
69
70
  rubocop-rake (0.6.0)
70
71
  rubocop (~> 1.0)
71
- rubocop-rspec (2.26.1)
72
+ rubocop-rspec (2.27.1)
72
73
  rubocop (~> 1.40)
73
74
  rubocop-capybara (~> 2.17)
74
75
  rubocop-factory_bot (~> 2.22)
75
76
  ruby-progressbar (1.13.0)
76
- ruby2_keywords (0.0.5)
77
77
  runger_release_assistant (0.6.0)
78
78
  activesupport (>= 6, < 8)
79
79
  memo_wise (>= 1.7, < 2)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RungerStyle
4
- VERSION = '1.7.0'
4
+ VERSION = '2.0.0'
5
5
  end
data/rulesets/default.yml CHANGED
@@ -4,6 +4,7 @@ AllCops:
4
4
  - db/schema.rb # auto-generated file; best to leave as-is
5
5
  - node_modules/**/*
6
6
  - vendor/bundle/**/*
7
+ ParserEngine: parser_prism
7
8
  TargetRubyVersion: 3.3
8
9
  UseCache: true
9
10
  Bundler/GemComment:
data/runger_style.gemspec CHANGED
@@ -27,5 +27,6 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.required_ruby_version = Gem::Requirement.new(">= #{File.read('.ruby-version').rstrip}")
29
29
 
30
+ spec.add_runtime_dependency('prism', '>= 0.24.0')
30
31
  spec.add_runtime_dependency('rubocop', '>= 1.38.0', '< 2')
31
32
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runger_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 2.0.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-29 00:00:00.000000000 Z
11
+ date: 2024-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: prism
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.24.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.24.0
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rubocop
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -86,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
100
  - !ruby/object:Gem::Version
87
101
  version: '0'
88
102
  requirements: []
89
- rubygems_version: 3.5.3
103
+ rubygems_version: 3.5.6
90
104
  signing_key:
91
105
  specification_version: 4
92
106
  summary: Shared rubocop rules for the preferred Ruby coding style of @davidrunger