runger_style 2.19.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +9 -7
- data/lib/runger_style/version.rb +1 -1
- data/runger_style.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e89148fa9cfbc7484f6e927899a9a804ae7862b63569e86822a7768e1a1618e0
|
|
4
|
+
data.tar.gz: 9b642fe96b3591886f43d32402e64ae3efb98e3e4d8c6b0b613a02b96ab2e587
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 277b155ff8ed164e3b1e66fd9639f60d171f98da9f54769759210b389c8305e86486df99c5a8b2be57b3651621cbc792b93342831b927751f83a0706f2fc4e1b
|
|
7
|
+
data.tar.gz: 685a9cc012880c52fafc56fe127979f00a2c95e07c8406490d6e792b5f13f756dd8f21ed3429a1798b0883c063b936c1b7a08fa19d5e9e2e68ecde0ea66f48d9
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
runger_style (
|
|
4
|
+
runger_style (3.0.0)
|
|
5
5
|
prism (>= 0.24.0)
|
|
6
|
-
rubocop (>= 1.
|
|
6
|
+
rubocop (>= 1.68.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (
|
|
11
|
+
activesupport (8.0.0.1)
|
|
12
12
|
base64
|
|
13
13
|
benchmark (>= 0.3)
|
|
14
14
|
bigdecimal
|
|
@@ -20,6 +20,7 @@ GEM
|
|
|
20
20
|
minitest (>= 5.1)
|
|
21
21
|
securerandom (>= 0.3)
|
|
22
22
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
23
|
+
uri (>= 0.13.1)
|
|
23
24
|
ast (2.4.2)
|
|
24
25
|
base64 (0.2.0)
|
|
25
26
|
benchmark (0.4.0)
|
|
@@ -88,10 +89,10 @@ GEM
|
|
|
88
89
|
rubocop (~> 1.61)
|
|
89
90
|
rubocop-rspec (~> 3, >= 3.0.1)
|
|
90
91
|
ruby-progressbar (1.13.0)
|
|
91
|
-
runger_release_assistant (0.
|
|
92
|
-
activesupport (>= 6
|
|
93
|
-
memo_wise (>= 1.7
|
|
94
|
-
rainbow (>= 3.0
|
|
92
|
+
runger_release_assistant (0.13.0)
|
|
93
|
+
activesupport (>= 6)
|
|
94
|
+
memo_wise (>= 1.7)
|
|
95
|
+
rainbow (>= 3.0)
|
|
95
96
|
slop (~> 4.8)
|
|
96
97
|
securerandom (0.4.0)
|
|
97
98
|
slop (4.10.1)
|
|
@@ -101,6 +102,7 @@ GEM
|
|
|
101
102
|
unicode-display_width (3.1.2)
|
|
102
103
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
103
104
|
unicode-emoji (4.0.4)
|
|
105
|
+
uri (1.0.2)
|
|
104
106
|
|
|
105
107
|
PLATFORMS
|
|
106
108
|
ruby
|
data/lib/runger_style/version.rb
CHANGED
data/runger_style.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runger_style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Runger
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.
|
|
33
|
+
version: 1.68.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1.
|
|
40
|
+
version: 1.68.0
|
|
41
41
|
description: Shared rubocop rules for the preferred Ruby coding style of @davidrunger
|
|
42
42
|
email:
|
|
43
43
|
- davidjrunger@gmail.com
|