runger_style 2.12.0 → 2.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +4 -4
- data/lib/runger_style/version.rb +1 -1
- data/rulesets/default.yml +4 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92b973cf61e5de73e13107f308e326182d0056148da20b92107ba84d9ae18a65
|
4
|
+
data.tar.gz: 7e159adba07bc607fa205d67a71be146340eb1e8240523745a2f8b95f11ed2a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea985eaf58010b673e64680c7ddd8725484bfec19788098d164a31ac44c2d0b73570818607a7161394c02117eb726f0a19c641fadae9ab3df8e0f1448b3d3645
|
7
|
+
data.tar.gz: c527810a1625c71deee046e37874ad9b11bd8e34e1650e0f11ebec7f11d155c3de12008676e51992e5d6e0eb08bbfecb7efe1e82dab3e88f941ee96fa7df63ce
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
runger_style (2.
|
4
|
+
runger_style (2.13.0)
|
5
5
|
prism (>= 0.24.0)
|
6
6
|
rubocop (>= 1.38.0, < 2)
|
7
7
|
|
@@ -51,7 +51,7 @@ GEM
|
|
51
51
|
regexp_parser (2.9.2)
|
52
52
|
reline (0.5.9)
|
53
53
|
io-console (~> 0.5)
|
54
|
-
rexml (3.3.
|
54
|
+
rexml (3.3.2)
|
55
55
|
strscan
|
56
56
|
rubocop (1.65.0)
|
57
57
|
json (~> 2.3)
|
@@ -80,13 +80,13 @@ GEM
|
|
80
80
|
rubocop-ast (>= 1.31.1, < 2.0)
|
81
81
|
rubocop-rake (0.6.0)
|
82
82
|
rubocop (~> 1.0)
|
83
|
-
rubocop-rspec (3.0.
|
83
|
+
rubocop-rspec (3.0.3)
|
84
84
|
rubocop (~> 1.61)
|
85
85
|
rubocop-rspec_rails (2.30.0)
|
86
86
|
rubocop (~> 1.61)
|
87
87
|
rubocop-rspec (~> 3, >= 3.0.1)
|
88
88
|
ruby-progressbar (1.13.0)
|
89
|
-
runger_release_assistant (0.
|
89
|
+
runger_release_assistant (0.11.0)
|
90
90
|
activesupport (>= 6, < 8)
|
91
91
|
memo_wise (>= 1.7, < 2)
|
92
92
|
rainbow (>= 3.0, < 4)
|
data/lib/runger_style/version.rb
CHANGED
data/rulesets/default.yml
CHANGED
@@ -40,9 +40,11 @@ Layout/LineEndStringConcatenationIndentation:
|
|
40
40
|
- bin/*
|
41
41
|
Layout/LineLength:
|
42
42
|
AllowedPatterns:
|
43
|
-
#
|
44
|
-
# can fix (e.g. a long file path)
|
43
|
+
# Ignore line length if the line is a comment without any spaces; it's probably not something we
|
44
|
+
# can fix (e.g. a long file path):
|
45
45
|
- !ruby/regexp /^ *#? [\S]+$/
|
46
|
+
# Ignore RSpec example descriptions:
|
47
|
+
- !ruby/regexp /^ *it ['"].*['"].*do$/
|
46
48
|
Max: 100
|
47
49
|
Layout/MultilineMethodCallIndentation:
|
48
50
|
EnforcedStyle: indented
|
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.13.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-07-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: prism
|