runger_style 2.5.0 → 2.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +3 -3
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +8 -8
- data/README.md +1 -0
- data/RELEASING.md +1 -1
- data/lib/runger_style/version.rb +1 -1
- data/rulesets/rspec.yml +0 -2
- data/rulesets/rspec_rails.yml +5 -0
- data/runger_style.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9143a23c6114b19305a4ae4924fd9ad1cc4c7826caa69ab45f5f7e4f2f4cde67
|
4
|
+
data.tar.gz: 856bd73b8671dbae4b50e0bc827cbb07425b37ed5cd798663608102a8eb2cbc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87a4096330ba02b3d08371433eb6fa040396f838cd5c7d50a7de4a53d07e94e75c0938bf33afe310e5f6e34a1532b867905473e2a3bb3bf52ec1a27306eea424
|
7
|
+
data.tar.gz: e122bb1f90db0e75a84341cf0dfcfbf9b54ef72c8d22bff55b653e082b0d37ef7004a97e3c95fd3c53e8ec078fe7eb580123a07c1ad3006c726825528a23d241
|
data/.github/workflows/ruby.yml
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
name: Run
|
1
|
+
name: Run RuboCop
|
2
2
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
5
5
|
branches:
|
6
|
-
-
|
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
|
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.
|
1
|
+
3.3.3
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
runger_style (2.
|
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.
|
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.
|
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.
|
32
|
-
minitest (5.23.
|
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.
|
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.
|
108
|
+
ruby 3.3.3p89
|
109
109
|
|
110
110
|
BUNDLED WITH
|
111
|
-
2.5.
|
111
|
+
2.5.11
|
data/README.md
CHANGED
@@ -49,6 +49,7 @@ inherit_gem:
|
|
49
49
|
- rulesets/performance.yml # gem 'rubocop-performance'
|
50
50
|
- rulesets/rails.yml # gem 'rubocop-rails'
|
51
51
|
- rulesets/rake.yml # gem 'rubocop-rake'
|
52
|
+
- rulesets/rspec_rails.yml # gem 'rubocop-rspec_rails'
|
52
53
|
- rulesets/rspec.yml # gem 'rubocop-rspec'
|
53
54
|
```
|
54
55
|
|
data/RELEASING.md
CHANGED
data/lib/runger_style/version.rb
CHANGED
data/rulesets/rspec.yml
CHANGED
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/
|
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.
|
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-
|
11
|
+
date: 2024-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: prism
|
@@ -76,6 +76,7 @@ files:
|
|
76
76
|
- rulesets/rails.yml
|
77
77
|
- rulesets/rake.yml
|
78
78
|
- rulesets/rspec.yml
|
79
|
+
- rulesets/rspec_rails.yml
|
79
80
|
- runger_style.gemspec
|
80
81
|
homepage: https://github.com/davidrunger/runger_style
|
81
82
|
licenses:
|
@@ -84,7 +85,7 @@ metadata:
|
|
84
85
|
rubygems_mfa_required: 'true'
|
85
86
|
homepage_uri: https://github.com/davidrunger/runger_style
|
86
87
|
source_code_uri: https://github.com/davidrunger/runger_style
|
87
|
-
changelog_uri: https://github.com/davidrunger/runger_style/blob/
|
88
|
+
changelog_uri: https://github.com/davidrunger/runger_style/blob/main/CHANGELOG.md
|
88
89
|
post_install_message:
|
89
90
|
rdoc_options: []
|
90
91
|
require_paths:
|
@@ -93,14 +94,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
94
|
requirements:
|
94
95
|
- - ">="
|
95
96
|
- !ruby/object:Gem::Version
|
96
|
-
version: 3.3.
|
97
|
+
version: 3.3.3
|
97
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
99
|
requirements:
|
99
100
|
- - ">="
|
100
101
|
- !ruby/object:Gem::Version
|
101
102
|
version: '0'
|
102
103
|
requirements: []
|
103
|
-
rubygems_version: 3.5.
|
104
|
+
rubygems_version: 3.5.11
|
104
105
|
signing_key:
|
105
106
|
specification_version: 4
|
106
107
|
summary: Shared rubocop rules for the preferred Ruby coding style of @davidrunger
|