runger_style 2.6.0 → 2.8.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: 57caa1a81eca43a312ac215f24b59436c182f3f95e49b0a6d9f1654abd325c7f
4
- data.tar.gz: e063ce31090447d846fbeba27ad5769c649711326b8746c242aab98115a396f5
3
+ metadata.gz: 86939d0fb432c2f46428bda64592ca9f7338850a75f61ed53de95c120fbf7490
4
+ data.tar.gz: c48d8e55e8163f0f4d363c7bdcdcc596005ae2a200bd7268603eb9ef9589336d
5
5
  SHA512:
6
- metadata.gz: e15e13def3ae02c0c3bec06d179b41832c5e78e4772b66df97e0e216c85539063b0ad6d4a8ec27ba7bb0d5eb6f6e3120cfe97681737e77e750022c14ac751400
7
- data.tar.gz: 83a897ea4a5dc05ef7a18b754b59efdcc5002e2ef3208c847d435a8810924e6b6ba63cd3c6423065b94fe500675ce07b56d53597984a388d1e8820880257f7ce
6
+ metadata.gz: e534fd01fd563dca0119eb9eb14b1111d2c7820f41a1c08d46efcf2888e76f0de43889583dfc7e6d9a9aa60ec2bc1ab1b7668ba26ef9aeec4cb17a1133310f1f
7
+ data.tar.gz: a3fec066dbec6848bb9eaa5a82bc4a08c47bbb3a6507fa2e73d92bcad648844ca0cb1d1ad8a6407bd691b11410718d18f89c4b919e195c2f0f2cf35f03109315
@@ -1,9 +1,9 @@
1
- name: Run Rubocop
1
+ name: Run RuboCop
2
2
 
3
3
  on:
4
4
  pull_request:
5
5
  branches:
6
- - master
6
+ - main
7
7
 
8
8
  jobs:
9
9
  build:
@@ -18,7 +18,7 @@ jobs:
18
18
  run: |
19
19
  gem install bundler -v 2.1.4
20
20
  bundle install --jobs 4 --retry 3
21
- - name: Run Rubocop
21
+ - name: Run RuboCop
22
22
  run: bin/rubocop --format clang
23
23
  - name: Ensure alpha version
24
24
  run: grep alpha $(find . -type f -name version.rb)
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.2
1
+ 3.3.3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v2.8.0 (2024-06-16)
2
+ - Enforce indented style for `Layout/MultilineOperationIndentation`
3
+
4
+ ## v2.7.0 (2024-06-15)
5
+ - Rename primary branch from `master` to `main`
6
+
1
7
  ## v2.6.0 (2024-06-12)
2
8
  - Move RSpecRails cop to separate YAML file
3
9
 
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- runger_style (2.6.0)
4
+ runger_style (2.8.0)
5
5
  prism (>= 0.24.0)
6
6
  rubocop (>= 1.38.0, < 2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.1.3.3)
11
+ activesupport (7.1.3.4)
12
12
  base64
13
13
  bigdecimal
14
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -21,15 +21,15 @@ GEM
21
21
  ast (2.4.2)
22
22
  base64 (0.2.0)
23
23
  bigdecimal (3.1.8)
24
- concurrent-ruby (1.2.3)
24
+ concurrent-ruby (1.3.3)
25
25
  connection_pool (2.4.1)
26
26
  drb (2.2.1)
27
27
  i18n (1.14.5)
28
28
  concurrent-ruby (~> 1.0)
29
29
  json (2.7.2)
30
30
  language_server-protocol (3.17.0.3)
31
- memo_wise (1.8.0)
32
- minitest (5.23.0)
31
+ memo_wise (1.9.0)
32
+ minitest (5.23.1)
33
33
  mutex_m (0.2.0)
34
34
  parallel (1.24.0)
35
35
  parser (3.3.1.0)
@@ -78,7 +78,7 @@ GEM
78
78
  rubocop-rspec_rails (2.28.3)
79
79
  rubocop (~> 1.40)
80
80
  ruby-progressbar (1.13.0)
81
- runger_release_assistant (0.6.0)
81
+ runger_release_assistant (0.8.0)
82
82
  activesupport (>= 6, < 8)
83
83
  memo_wise (>= 1.7, < 2)
84
84
  rainbow (>= 3.0, < 4)
@@ -105,7 +105,7 @@ DEPENDENCIES
105
105
  runger_style!
106
106
 
107
107
  RUBY VERSION
108
- ruby 3.3.2p78
108
+ ruby 3.3.3p89
109
109
 
110
110
  BUNDLED WITH
111
- 2.5.9
111
+ 2.5.11
data/RELEASING.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Releasing
2
2
 
3
- 1. check out the `master` branch
3
+ 1. check out the `main` branch
4
4
  2. update `CHANGELOG.md`
5
5
  3. update the version number in `version.rb`
6
6
  4. `bundle install` (which will update `Gemfile.lock`)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RungerStyle
4
- VERSION = '2.6.0'
4
+ VERSION = '2.8.0'
5
5
  end
data/rulesets/default.yml CHANGED
@@ -46,6 +46,8 @@ Layout/LineLength:
46
46
  Max: 100
47
47
  Layout/MultilineMethodCallIndentation:
48
48
  EnforcedStyle: indented
49
+ Layout/MultilineOperationIndentation:
50
+ EnforcedStyle: indented
49
51
  Layout/RedundantLineBreak:
50
52
  Enabled: false
51
53
  Layout/SingleLineBlockChain:
data/runger_style.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
18
  spec.metadata['source_code_uri'] = 'https://github.com/davidrunger/runger_style'
19
19
  spec.metadata['changelog_uri'] =
20
- 'https://github.com/davidrunger/runger_style/blob/master/CHANGELOG.md'
20
+ 'https://github.com/davidrunger/runger_style/blob/main/CHANGELOG.md'
21
21
 
22
22
  spec.files =
23
23
  `git ls-files -z`.split("\x0").reject do |f|
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: 2.6.0
4
+ version: 2.8.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-06-12 00:00:00.000000000 Z
11
+ date: 2024-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: prism
@@ -85,7 +85,7 @@ metadata:
85
85
  rubygems_mfa_required: 'true'
86
86
  homepage_uri: https://github.com/davidrunger/runger_style
87
87
  source_code_uri: https://github.com/davidrunger/runger_style
88
- changelog_uri: https://github.com/davidrunger/runger_style/blob/master/CHANGELOG.md
88
+ changelog_uri: https://github.com/davidrunger/runger_style/blob/main/CHANGELOG.md
89
89
  post_install_message:
90
90
  rdoc_options: []
91
91
  require_paths:
@@ -94,14 +94,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
- version: 3.3.2
97
+ version: 3.3.3
98
98
  required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - ">="
101
101
  - !ruby/object:Gem::Version
102
102
  version: '0'
103
103
  requirements: []
104
- rubygems_version: 3.5.9
104
+ rubygems_version: 3.5.11
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: Shared rubocop rules for the preferred Ruby coding style of @davidrunger