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 +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/RELEASING.md +1 -1
- data/lib/runger_style/version.rb +1 -1
- data/rulesets/default.yml +2 -0
- data/runger_style.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86939d0fb432c2f46428bda64592ca9f7338850a75f61ed53de95c120fbf7490
|
4
|
+
data.tar.gz: c48d8e55e8163f0f4d363c7bdcdcc596005ae2a200bd7268603eb9ef9589336d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e534fd01fd563dca0119eb9eb14b1111d2c7820f41a1c08d46efcf2888e76f0de43889583dfc7e6d9a9aa60ec2bc1ab1b7668ba26ef9aeec4cb17a1133310f1f
|
7
|
+
data.tar.gz: a3fec066dbec6848bb9eaa5a82bc4a08c47bbb3a6507fa2e73d92bcad648844ca0cb1d1ad8a6407bd691b11410718d18f89c4b919e195c2f0f2cf35f03109315
|
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.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.
|
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/RELEASING.md
CHANGED
data/lib/runger_style/version.rb
CHANGED
data/rulesets/default.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.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-
|
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/
|
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.
|
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.
|
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
|