runger_style 2.6.0 → 2.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: 57caa1a81eca43a312ac215f24b59436c182f3f95e49b0a6d9f1654abd325c7f
4
- data.tar.gz: e063ce31090447d846fbeba27ad5769c649711326b8746c242aab98115a396f5
3
+ metadata.gz: 9143a23c6114b19305a4ae4924fd9ad1cc4c7826caa69ab45f5f7e4f2f4cde67
4
+ data.tar.gz: 856bd73b8671dbae4b50e0bc827cbb07425b37ed5cd798663608102a8eb2cbc6
5
5
  SHA512:
6
- metadata.gz: e15e13def3ae02c0c3bec06d179b41832c5e78e4772b66df97e0e216c85539063b0ad6d4a8ec27ba7bb0d5eb6f6e3120cfe97681737e77e750022c14ac751400
7
- data.tar.gz: 83a897ea4a5dc05ef7a18b754b59efdcc5002e2ef3208c847d435a8810924e6b6ba63cd3c6423065b94fe500675ce07b56d53597984a388d1e8820880257f7ce
6
+ metadata.gz: 87a4096330ba02b3d08371433eb6fa040396f838cd5c7d50a7de4a53d07e94e75c0938bf33afe310e5f6e34a1532b867905473e2a3bb3bf52ec1a27306eea424
7
+ data.tar.gz: e122bb1f90db0e75a84341cf0dfcfbf9b54ef72c8d22bff55b653e082b0d37ef7004a97e3c95fd3c53e8ec078fe7eb580123a07c1ad3006c726825528a23d241
@@ -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,6 @@
1
+ ## v2.7.0 (2024-06-15)
2
+ - Rename primary branch from `master` to `main`
3
+
1
4
  ## v2.6.0 (2024-06-12)
2
5
  - Move RSpecRails cop to separate YAML file
3
6
 
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.7.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.7.0'
5
5
  end
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.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-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