random_name_generator 1.2.1 → 1.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74d35fcbc2b3d29c404257f11dd5514f78b9f1fd96e543ccbf2db119d3cb9b5c
4
- data.tar.gz: 92e3a23199ec5b67165e6bc30f4cbca8e9d04ce06b2718d99d28f302fbd230a7
3
+ metadata.gz: 4336d97396f09574b9fb352227c6216c0de30c9838366fb314146424debc9021
4
+ data.tar.gz: fec2c1e6ef12c3e123f6da425c599eb42ed6f674970019ca3625513bf7bd3a9b
5
5
  SHA512:
6
- metadata.gz: 5b0776bb1b2bae49c6fd3d21b8d1ab5a218aa006b296962bd45b3287ac9599bd8a22820965c85e6b3e162ff3c8b1c12386e824fa47e4219064e3af7c5ed62ee4
7
- data.tar.gz: d4e118fa0a1d60974bd34353350eee29cd930dfb81e5fbd1de81ea0f2613792a0d885cf09089aadf437f7da264f6861cb4baab1defdb06934edf8c7847505ecd
6
+ metadata.gz: 179315795584dae924501b324b29689910ba7ad0fdecbd7e73eee8e7685807c5606f660680bc35af2f287120de712c1d92ce9ce51ea251408416258c9357dff9
7
+ data.tar.gz: c1909c25079cc1b942b940f6e2cd0ba3d722773dc9a246ef9de7e9723d66f8ced7f5cae0bbef7bd60d14011727fc72056e7d197e8048799604f5b6659ab1b8bd
@@ -0,0 +1,31 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on: push
11
+
12
+ jobs:
13
+ test:
14
+
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ ruby-version: ['2.6', '2.7', '3.0']
19
+
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Set up Ruby
23
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
24
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
25
+ uses: ruby/setup-ruby@v1
26
+ # uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
27
+ with:
28
+ ruby-version: ${{ matrix.ruby-version }}
29
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30
+ - name: Run tests
31
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -23,7 +23,7 @@ build/
23
23
 
24
24
  ## Environment normalization:
25
25
  /.bundle/
26
- /vendor/bundle
26
+ /vendor/
27
27
  /lib/bundler/man/
28
28
 
29
29
  # for a library or gem, you might want to ignore these files since the code is
data/Gemfile CHANGED
@@ -3,6 +3,7 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  gem 'pry'
6
+ gem 'rest-client', '>= 1.8.0'
6
7
  gem 'slop', '~> 4.2'
7
8
 
8
9
  group :development do
@@ -15,5 +16,5 @@ group :development do
15
16
  gem 'rubocop'
16
17
  end
17
18
 
18
- gem 'coveralls', require: false
19
+ gem 'coveralls', '>= 0.8.23', require: false
19
20
  gem 'simplecov', require: false, group: :test
data/Gemfile.lock CHANGED
@@ -1,23 +1,25 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- random_name_generator (1.2.1)
4
+ random_name_generator (1.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  ansi (1.5.0)
10
- ast (2.4.0)
10
+ ast (2.4.2)
11
11
  builder (3.2.4)
12
- coderay (1.1.2)
13
- coveralls (0.7.2)
14
- multi_json (~> 1.3)
15
- rest-client (= 1.6.7)
16
- simplecov (>= 0.7)
17
- term-ansicolor (= 1.2.2)
18
- thor (= 0.18.1)
19
- docile (1.3.2)
20
- ffi (1.12.2)
12
+ coderay (1.1.3)
13
+ coveralls (0.8.23)
14
+ json (>= 1.8, < 3)
15
+ simplecov (~> 0.16.1)
16
+ term-ansicolor (~> 1.3)
17
+ thor (>= 0.19.4, < 2.0)
18
+ tins (~> 1.6)
19
+ docile (1.3.5)
20
+ domain_name (0.5.20190701)
21
+ unf (>= 0.0.5, < 1.0.0)
22
+ ffi (1.15.0)
21
23
  formatador (0.2.5)
22
24
  guard (2.16.2)
23
25
  formatador (>= 0.2.4)
@@ -32,73 +34,91 @@ GEM
32
34
  guard-minitest (2.4.6)
33
35
  guard-compat (~> 1.2)
34
36
  minitest (>= 3.0)
37
+ http-accept (1.7.0)
38
+ http-cookie (1.0.3)
39
+ domain_name (~> 0.5)
40
+ json (2.5.1)
35
41
  kwalify (0.7.2)
36
- listen (3.2.1)
42
+ listen (3.4.1)
37
43
  rb-fsevent (~> 0.10, >= 0.10.3)
38
44
  rb-inotify (~> 0.9, >= 0.9.10)
39
- lumberjack (1.2.4)
45
+ lumberjack (1.2.8)
40
46
  method_source (1.0.0)
41
47
  mime-types (3.3.1)
42
48
  mime-types-data (~> 3.2015)
43
- mime-types-data (3.2020.0425)
44
- minitest (5.14.0)
45
- minitest-reporters (1.4.2)
49
+ mime-types-data (3.2021.0225)
50
+ minitest (5.14.4)
51
+ minitest-reporters (1.4.3)
46
52
  ansi
47
53
  builder
48
54
  minitest (>= 5.0)
49
55
  ruby-progressbar
50
- mocha (1.11.2)
51
- multi_json (1.14.1)
56
+ mocha (1.12.0)
52
57
  nenv (0.3.0)
58
+ netrc (0.11.0)
53
59
  notiffany (0.1.3)
54
60
  nenv (~> 0.1)
55
61
  shellany (~> 0.0)
56
- parallel (1.19.1)
57
- parser (2.7.1.2)
58
- ast (~> 2.4.0)
59
- pry (0.13.1)
62
+ parallel (1.20.1)
63
+ parser (3.0.0.0)
64
+ ast (~> 2.4.1)
65
+ pry (0.14.0)
60
66
  coderay (~> 1.1)
61
67
  method_source (~> 1.0)
62
- psych (3.1.0)
68
+ psych (3.3.1)
63
69
  rainbow (3.0.0)
64
- rake (13.0.1)
70
+ rake (13.0.3)
65
71
  rb-fsevent (0.10.4)
66
72
  rb-inotify (0.10.1)
67
73
  ffi (~> 1.0)
68
- reek (6.0.0)
74
+ reek (6.0.3)
69
75
  kwalify (~> 0.7.0)
70
- parser (>= 2.5.0.0, < 2.8, != 2.5.1.1)
71
- psych (~> 3.1.0)
76
+ parser (~> 3.0.0)
77
+ psych (~> 3.1)
72
78
  rainbow (>= 2.0, < 4.0)
73
- rest-client (1.6.7)
74
- mime-types (>= 1.16)
79
+ regexp_parser (2.1.1)
80
+ rest-client (2.1.0)
81
+ http-accept (>= 1.7.0, < 2.0)
82
+ http-cookie (>= 1.0.2, < 2.0)
83
+ mime-types (>= 1.16, < 4.0)
84
+ netrc (~> 0.8)
75
85
  rexml (3.2.4)
76
- rubocop (0.83.0)
86
+ rubocop (1.11.0)
77
87
  parallel (~> 1.10)
78
- parser (>= 2.7.0.1)
88
+ parser (>= 3.0.0.0)
79
89
  rainbow (>= 2.2.2, < 4.0)
90
+ regexp_parser (>= 1.8, < 3.0)
80
91
  rexml
92
+ rubocop-ast (>= 1.2.0, < 2.0)
81
93
  ruby-progressbar (~> 1.7)
82
- unicode-display_width (>= 1.4.0, < 2.0)
83
- ruby-progressbar (1.10.1)
94
+ unicode-display_width (>= 1.4.0, < 3.0)
95
+ rubocop-ast (1.4.1)
96
+ parser (>= 2.7.1.5)
97
+ ruby-progressbar (1.11.0)
84
98
  shellany (0.0.1)
85
- simplecov (0.18.5)
99
+ simplecov (0.16.1)
86
100
  docile (~> 1.1)
87
- simplecov-html (~> 0.11)
88
- simplecov-html (0.12.2)
89
- slop (4.8.1)
90
- term-ansicolor (1.2.2)
91
- tins (~> 0.8)
92
- thor (0.18.1)
93
- tins (0.13.2)
94
- unicode-display_width (1.7.0)
101
+ json (>= 1.8, < 3)
102
+ simplecov-html (~> 0.10.0)
103
+ simplecov-html (0.10.2)
104
+ slop (4.8.2)
105
+ sync (0.5.0)
106
+ term-ansicolor (1.7.1)
107
+ tins (~> 1.0)
108
+ thor (1.1.0)
109
+ tins (1.28.0)
110
+ sync
111
+ unf (0.1.4)
112
+ unf_ext
113
+ unf_ext (0.0.7.7)
114
+ unicode-display_width (2.0.0)
95
115
 
96
116
  PLATFORMS
97
117
  ruby
98
118
 
99
119
  DEPENDENCIES
100
120
  bundler
101
- coveralls
121
+ coveralls (>= 0.8.23)
102
122
  guard
103
123
  guard-minitest
104
124
  minitest
@@ -108,9 +128,10 @@ DEPENDENCIES
108
128
  rake
109
129
  random_name_generator!
110
130
  reek
131
+ rest-client (>= 1.8.0)
111
132
  rubocop
112
133
  simplecov
113
134
  slop (~> 4.2)
114
135
 
115
136
  BUNDLED WITH
116
- 2.1.2
137
+ 2.1.4
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/random_name_generator.svg)](https://badge.fury.io/rb/random_name_generator)
4
4
  [![Build Status](https://travis-ci.org/folkengine/random_name_generator.svg?branch=master)](https://travis-ci.org/folkengine/random_name_generator)
5
5
  [![Code Climate](https://codeclimate.com/github/folkengine/random_name_generator/badges/gpa.svg)](https://codeclimate.com/github/folkengine/random_name_generator)
6
- [![Dependency Status](https://gemnasium.com/folkengine/random_name_generator.svg)](https://gemnasium.com/folkengine/random_name_generator)
7
6
  [![Coverage Status](https://coveralls.io/repos/github/folkengine/random_name_generator/badge.svg?branch=master)](https://coveralls.io/github/folkengine/random_name_generator?branch=master)
8
7
  [![Inline docs](http://inch-ci.org/github/folkengine/random_name_generator.svg?branch=master)](http://inch-ci.org/github/folkengine/random_name_generator)
9
8
 
@@ -1,3 +1,4 @@
1
+ -a +c
1
2
  -æ +c
2
3
  -aa +c
3
4
  -ab
@@ -20,6 +21,8 @@
20
21
  -ang
21
22
  -anti
22
23
  -ap
24
+ -ar
25
+ -as
23
26
  -hab
24
27
  -mai
25
28
  -mal
@@ -40,6 +43,7 @@ ia -c +c
40
43
  it -c -v
41
44
  loc +v
42
45
  ma +c
46
+ mo -c +c
43
47
  oc
44
48
  olly -c +v
45
49
  or
@@ -47,12 +51,20 @@ ra +c
47
51
  rat
48
52
  rax +v
49
53
  real
54
+ roma -c +c
50
55
  sh
51
56
  thi +c
57
+ una -c +c
52
58
 
53
59
  +al
60
+ +akku -c
54
61
  +as
62
+ +b'el -c
55
63
  +bou -v
64
+ +chon
65
+ +christ -v
66
+ +dai
67
+ +deus
56
68
  +er -c
57
69
  +es -c
58
70
  +ias -c
@@ -60,34 +72,30 @@ thi +c
60
72
  +ka
61
73
  +lat
62
74
  +lech
75
+ +lius
63
76
  +ma
64
77
  +man
65
78
  +mon
66
79
  +nah
67
80
  +nyu
68
81
  +on -c
82
+ +phus -c
69
83
  +rept -v
70
84
  +res
85
+ +ros
71
86
  +s -v
87
+ +sag
88
+ +sakku -v
89
+ +sura
72
90
  +van
73
91
  +xas -v
74
92
  +y -c
75
93
  +ym
76
94
  +zou
95
+ +xu
77
96
 
78
97
  # https://en.wikipedia.org/wiki/The_infernal_names
79
98
 
80
- Andrealphus (Christian demonology)
81
- Andromalius (Christian demonology)
82
- Antichrist (Christian demonology)
83
- Anzu (Sumerian mythology)
84
- Armaros (Jewish demonology)
85
- Archon (Gnosticism)
86
- Arunasura [Hindu mythology]
87
- Asag (Sumerian demonology)
88
- Asakku (Babylonian mythology)
89
- Asb'el (Jewish mythology)
90
- Asmodai/Asmodeus (Jewish folklore and Christian demonology)
91
99
  Astaroth (Christian demonology)
92
100
  Asura (Hindu mythology)
93
101
  Azazel / Azaz'el (Jewish demonology)
@@ -29,9 +29,9 @@
29
29
  # syllable and SEPARATE WITH WHITESPACE. (example: "aad +v -c"). The order of rules is not important.
30
30
  #
31
31
  # RULES:
32
- # 1) +v means that next syllable must definitely start with a vocal.
32
+ # 1) +v means that next syllable must definitely start with a vowel.
33
33
  # 2) +c means that next syllable must definitely start with a consonant.
34
- # 3) -v means that this syllable can only be added to another syllable, that ends with a vocal.
34
+ # 3) -v means that this syllable can only be added to another syllable, that ends with a vowel.
35
35
  # 4) -c means that this syllable can only be added to another syllable, that ends with a consonant.
36
36
  #
37
37
  # :reek:TooManyMethods
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'random_name_generator'
6
- spec.version = '1.2.1'
6
+ spec.version = '1.2.2'
7
7
  spec.authors = ['folkengine']
8
8
  spec.email = ['gaoler@electronicpanopticon.com']
9
9
  spec.licenses = ['GPL-3.0']
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: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - folkengine
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-03 00:00:00.000000000 Z
11
+ date: 2021-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -48,10 +48,10 @@ extra_rdoc_files: []
48
48
  files:
49
49
  - ".codeclimate.yml"
50
50
  - ".coveralls.yml"
51
+ - ".github/workflows/ruby.yml"
51
52
  - ".gitignore"
52
53
  - ".overcommit.yml"
53
54
  - ".rubocop.yml"
54
- - ".travis.yml"
55
55
  - Gemfile
56
56
  - Gemfile.lock
57
57
  - LICENSE
@@ -78,7 +78,7 @@ homepage: https://github.com/folkengine/random_name_generator
78
78
  licenses:
79
79
  - GPL-3.0
80
80
  metadata: {}
81
- post_install_message:
81
+ post_install_message:
82
82
  rdoc_options: []
83
83
  require_paths:
84
84
  - lib
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  - !ruby/object:Gem::Version
94
94
  version: '0'
95
95
  requirements: []
96
- rubygems_version: 3.0.8
97
- signing_key:
96
+ rubygems_version: 3.2.3
97
+ signing_key:
98
98
  specification_version: 4
99
99
  summary: Random Name Generator
100
100
  test_files: []
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- dist: trusty
2
- before_install:
3
- - gem install bundler:2.1.2
4
- language: ruby
5
- rvm:
6
- - "2.5.1"
7
- - "2.6.3"