random_name_generator 2.1.0 → 3.0.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 +1 -1
- data/.rubocop.yml +17 -1
- data/Gemfile.lock +57 -34
- data/lib/random_name_generator/version.rb +1 -1
- data/random_name_generator.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b497a4a4f3d1402951e0f9f86b5bcf5a5e8ecc84702734580459f839ef7cea38
|
4
|
+
data.tar.gz: '08368ce25fbba0e4ef8e3a99c0d1c417bc094a0d9e72483541e3c32f7ace255b'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3dd98e4ca5bfa8581b0c79f9fa75c804756c4a461fc9b6af2c21d383f4cf1bce7594e577bfc9bb8d7da0797f50317ce31cdc7235109cc21d9bb602d85eb345c
|
7
|
+
data.tar.gz: 6c6965cabb9e513e578fa28a1f497769de73b21c1b8f63b62fa5d21147f759d3970c9e219093fe1378e8b7c08c934ebf2e1494d48cb388bfbcecb4bc5df68c8e
|
data/.github/workflows/ruby.yml
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion:
|
2
|
+
TargetRubyVersion: 3.0
|
3
3
|
NewCops: enable
|
4
4
|
|
5
|
+
require:
|
6
|
+
- rubocop-rspec
|
7
|
+
- rubocop-rake
|
8
|
+
|
5
9
|
Layout/LineLength:
|
6
10
|
Max: 180
|
7
11
|
|
@@ -16,6 +20,18 @@ Metrics/ClassLength:
|
|
16
20
|
Metrics/MethodLength:
|
17
21
|
Max: 11
|
18
22
|
|
23
|
+
RSpec/BeforeAfterAll:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
RSpec/InstanceVariable:
|
27
|
+
Enabled: false
|
28
|
+
|
29
|
+
RSpec/MultipleExpectations:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
RSpec/NestedGroups:
|
33
|
+
Max: 5
|
34
|
+
|
19
35
|
Style/StringLiterals:
|
20
36
|
Enabled: true
|
21
37
|
EnforcedStyle: double_quotes
|
data/Gemfile.lock
CHANGED
@@ -1,77 +1,100 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
random_name_generator (
|
4
|
+
random_name_generator (3.0.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
ast (2.4.2)
|
10
|
+
bigdecimal (3.1.8)
|
10
11
|
coderay (1.1.3)
|
11
|
-
|
12
|
-
|
13
|
-
|
12
|
+
concurrent-ruby (1.3.4)
|
13
|
+
diff-lcs (1.5.1)
|
14
|
+
dry-configurable (1.2.0)
|
15
|
+
dry-core (~> 1.0, < 2)
|
16
|
+
zeitwerk (~> 2.6)
|
17
|
+
dry-core (1.0.1)
|
18
|
+
concurrent-ruby (~> 1.0)
|
19
|
+
zeitwerk (~> 2.6)
|
20
|
+
dry-inflector (1.1.0)
|
21
|
+
dry-initializer (3.1.1)
|
22
|
+
dry-logic (1.5.0)
|
23
|
+
concurrent-ruby (~> 1.0)
|
24
|
+
dry-core (~> 1.0, < 2)
|
25
|
+
zeitwerk (~> 2.6)
|
26
|
+
dry-schema (1.13.4)
|
27
|
+
concurrent-ruby (~> 1.0)
|
28
|
+
dry-configurable (~> 1.0, >= 1.0.1)
|
29
|
+
dry-core (~> 1.0, < 2)
|
30
|
+
dry-initializer (~> 3.0)
|
31
|
+
dry-logic (>= 1.4, < 2)
|
32
|
+
dry-types (>= 1.7, < 2)
|
33
|
+
zeitwerk (~> 2.6)
|
34
|
+
dry-types (1.7.2)
|
35
|
+
bigdecimal (~> 3.0)
|
36
|
+
concurrent-ruby (~> 1.0)
|
37
|
+
dry-core (~> 1.0)
|
38
|
+
dry-inflector (~> 1.0)
|
39
|
+
dry-logic (~> 1.4)
|
40
|
+
zeitwerk (~> 2.6)
|
41
|
+
json (2.7.2)
|
14
42
|
language_server-protocol (3.17.0.3)
|
15
|
-
method_source (1.
|
16
|
-
parallel (1.
|
17
|
-
parser (3.
|
43
|
+
method_source (1.1.0)
|
44
|
+
parallel (1.26.3)
|
45
|
+
parser (3.3.5.0)
|
18
46
|
ast (~> 2.4.1)
|
19
47
|
racc
|
20
48
|
pry (0.14.2)
|
21
49
|
coderay (~> 1.1)
|
22
50
|
method_source (~> 1.0)
|
23
|
-
racc (1.
|
51
|
+
racc (1.8.1)
|
24
52
|
rainbow (3.1.1)
|
25
53
|
rake (13.1.0)
|
26
|
-
reek (6.
|
27
|
-
|
28
|
-
parser (~> 3.
|
54
|
+
reek (6.3.0)
|
55
|
+
dry-schema (~> 1.13.0)
|
56
|
+
parser (~> 3.3.0)
|
29
57
|
rainbow (>= 2.0, < 4.0)
|
30
|
-
|
31
|
-
|
58
|
+
rexml (~> 3.1)
|
59
|
+
regexp_parser (2.9.2)
|
60
|
+
rexml (3.3.8)
|
32
61
|
rspec (3.12.0)
|
33
62
|
rspec-core (~> 3.12.0)
|
34
63
|
rspec-expectations (~> 3.12.0)
|
35
64
|
rspec-mocks (~> 3.12.0)
|
36
|
-
rspec-core (3.12.
|
65
|
+
rspec-core (3.12.3)
|
37
66
|
rspec-support (~> 3.12.0)
|
38
|
-
rspec-expectations (3.12.
|
67
|
+
rspec-expectations (3.12.4)
|
39
68
|
diff-lcs (>= 1.2.0, < 2.0)
|
40
69
|
rspec-support (~> 3.12.0)
|
41
|
-
rspec-mocks (3.12.
|
70
|
+
rspec-mocks (3.12.7)
|
42
71
|
diff-lcs (>= 1.2.0, < 2.0)
|
43
72
|
rspec-support (~> 3.12.0)
|
44
|
-
rspec-support (3.12.
|
45
|
-
rubocop (1.
|
73
|
+
rspec-support (3.12.2)
|
74
|
+
rubocop (1.66.1)
|
46
75
|
json (~> 2.3)
|
47
76
|
language_server-protocol (>= 3.17.0)
|
48
77
|
parallel (~> 1.10)
|
49
|
-
parser (>= 3.
|
78
|
+
parser (>= 3.3.0.2)
|
50
79
|
rainbow (>= 2.2.2, < 4.0)
|
51
|
-
regexp_parser (>=
|
52
|
-
|
53
|
-
rubocop-ast (>= 1.30.0, < 2.0)
|
80
|
+
regexp_parser (>= 2.4, < 3.0)
|
81
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
54
82
|
ruby-progressbar (~> 1.7)
|
55
83
|
unicode-display_width (>= 2.4.0, < 3.0)
|
56
|
-
rubocop-ast (1.
|
57
|
-
parser (>= 3.
|
58
|
-
rubocop-capybara (2.19.0)
|
59
|
-
rubocop (~> 1.41)
|
60
|
-
rubocop-factory_bot (2.24.0)
|
61
|
-
rubocop (~> 1.33)
|
84
|
+
rubocop-ast (1.32.3)
|
85
|
+
parser (>= 3.3.1.0)
|
62
86
|
rubocop-rake (0.6.0)
|
63
87
|
rubocop (~> 1.0)
|
64
|
-
rubocop-rspec (
|
65
|
-
rubocop (~> 1.
|
66
|
-
rubocop-capybara (~> 2.17)
|
67
|
-
rubocop-factory_bot (~> 2.22)
|
88
|
+
rubocop-rspec (3.1.0)
|
89
|
+
rubocop (~> 1.61)
|
68
90
|
ruby-progressbar (1.13.0)
|
69
91
|
slop (4.10.1)
|
70
|
-
unicode-display_width (2.
|
92
|
+
unicode-display_width (2.6.0)
|
93
|
+
zeitwerk (2.6.18)
|
71
94
|
|
72
95
|
PLATFORMS
|
73
|
-
aarch64-linux
|
74
96
|
arm64-darwin-21
|
97
|
+
arm64-darwin-24
|
75
98
|
x86_64-linux
|
76
99
|
|
77
100
|
DEPENDENCIES
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.description = "Generates random names based upon custom collections of syllables. Styles include Elvish, Fantasy, Goblin, and Roman."
|
13
13
|
spec.homepage = "https://github.com/folkengine/random_name_generator"
|
14
14
|
spec.license = "LGPL-3.0"
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new(">=
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
|
16
16
|
spec.metadata = { "rubygems_mfa_required" => "true" }
|
17
17
|
|
18
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: random_name_generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- folkengine
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Generates random names based upon custom collections of syllables. Styles
|
14
14
|
include Elvish, Fantasy, Goblin, and Roman.
|
@@ -70,14 +70,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
70
|
requirements:
|
71
71
|
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version:
|
73
|
+
version: 3.0.0
|
74
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
75
|
requirements:
|
76
76
|
- - ">="
|
77
77
|
- !ruby/object:Gem::Version
|
78
78
|
version: '0'
|
79
79
|
requirements: []
|
80
|
-
rubygems_version: 3.
|
80
|
+
rubygems_version: 3.4.19
|
81
81
|
signing_key:
|
82
82
|
specification_version: 4
|
83
83
|
summary: Random Name Generator
|