genregen 0.0.8 → 0.0.9

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.
Files changed (5) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE +17 -28
  3. data/lib/data.yml +6 -0
  4. data/lib/genregen.rb +1 -1
  5. metadata +7 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ee34747c1bca46b20437243867ff118f83f027eb
4
- data.tar.gz: 4ed59de7c6d535a5d71a97d6885ce969ffac2f3f
2
+ SHA256:
3
+ metadata.gz: 86f1b5f0fd219eb6a43a7ebd9ed001b1a3a4f0f445415ddfeb09fdc4349df7a8
4
+ data.tar.gz: cf9fe5d1c310cb3d557bb0deb8f9aa717331f1d582a5eefd3e2328bd4f2120a4
5
5
  SHA512:
6
- metadata.gz: 17e886302eb398378f5ebbf062d3ef8e2558d2d17312eccd6cb80bb4be6512ac5cffed120950f4f3cd8d712853eaeafaf64ad05198264dc9198941a96457b60f
7
- data.tar.gz: fc9f2fa6389803a602dc851d7463564cddf20adabc17d548372783c167bedcbc5d225f38aa787f8a7d628025b43c781dae103e52b8d6028ce4c735ab5d8675ad
6
+ metadata.gz: 2175719003552853775691959c1ad3c15d2f2c483b0c69081580b30a1948e2eeed6ed8f6e1fe4754921928c06016aec1015a0ae7f355b76fb6fba05331b79ac8
7
+ data.tar.gz: '0319ae19c83e90c733fc4e820084f87a899034e3c74362f674428d54f724bc1296427c66d4068cbc8d54500752ebfdbf55c5442336e12f579ea2bcfdcd3250cd'
data/LICENSE CHANGED
@@ -1,32 +1,21 @@
1
- This software is Copyright (c) 2015 by William Woodruff.
1
+ The MIT License (MIT)
2
2
 
3
- This is free software, licensed under:
3
+ Copyright (c) 2022 William Woodruff <william @ yossarian.net>
4
4
 
5
- The MIT (X11) License
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
6
11
 
7
- The MIT License
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
8
14
 
9
- Permission is hereby granted, free of charge, to any person
10
- obtaining a copy of this software and associated
11
- documentation files (the "Software"), to deal in the Software
12
- without restriction, including without limitation the rights to
13
- use, copy, modify, merge, publish, distribute, sublicense,
14
- and/or sell copies of the Software, and to permit persons to
15
- whom the Software is furnished to do so, subject to the
16
- following conditions:
17
-
18
- The above copyright notice and this permission notice shall
19
- be included in all copies or substantial portions of the
20
- Software.
21
-
22
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
23
- WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
24
- INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25
- MERCHANTABILITY, FITNESS FOR A PARTICULAR
26
- PURPOSE AND NONINFRINGEMENT. IN NO EVENT
27
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
30
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31
- CONNECTION WITH THE SOFTWARE OR THE USE OR
32
- OTHER DEALINGS IN THE SOFTWARE.
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/lib/data.yml CHANGED
@@ -11,6 +11,7 @@
11
11
  # - sea shanties
12
12
  # - yodeling
13
13
  # - throat singing
14
+ # - americana
14
15
 
15
16
  templates:
16
17
  - "%{genre}%{suffix}"
@@ -39,6 +40,7 @@ adjectives:
39
40
  - continental
40
41
  - cool
41
42
  - cosmic
43
+ - czech
42
44
  - dank
43
45
  - detroit
44
46
  - digital
@@ -78,6 +80,7 @@ adjectives:
78
80
  - medieval
79
81
  - melodic
80
82
  - midwest
83
+ - minimal
81
84
  - modern
82
85
  - mushroom
83
86
  - new
@@ -108,6 +111,7 @@ adjectives:
108
111
  - traditional
109
112
  - trippy
110
113
  - twee
114
+ - tenderqueer
111
115
  - underground
112
116
  - uptempo
113
117
  - urban
@@ -135,6 +139,7 @@ prefixes:
135
139
  - down
136
140
  - dream
137
141
  - drone
142
+ - e
138
143
  - electro
139
144
  - emo
140
145
  - ethno
@@ -180,6 +185,7 @@ prefixes:
180
185
  - trap
181
186
  - trip
182
187
  - unblack
188
+ - ur
183
189
  - vapor
184
190
  - viking
185
191
 
data/lib/genregen.rb CHANGED
@@ -5,7 +5,7 @@ require 'yaml'
5
5
  # The primary namespace for genregen.
6
6
  module GenreGen
7
7
  # release version
8
- VERSION = "0.0.8".freeze
8
+ VERSION = "0.0.9".freeze
9
9
 
10
10
  # data hash
11
11
  DATA = YAML::load_file(File.join(File.dirname(__FILE__), 'data.yml'))
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: genregen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Woodruff
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-14 00:00:00.000000000 Z
11
+ date: 2022-11-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A gem for generating music genres.
14
- email: william@tuffbizz.com
14
+ email: william@yossarian.net
15
15
  executables:
16
16
  - genregen
17
17
  extensions: []
@@ -27,7 +27,7 @@ homepage: https://github.com/and-the-rest/genregen
27
27
  licenses:
28
28
  - MIT
29
29
  metadata: {}
30
- post_install_message:
30
+ post_install_message:
31
31
  rdoc_options: []
32
32
  require_paths:
33
33
  - lib
@@ -42,9 +42,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
42
42
  - !ruby/object:Gem::Version
43
43
  version: '0'
44
44
  requirements: []
45
- rubyforge_project:
46
- rubygems_version: 2.6.8
47
- signing_key:
45
+ rubygems_version: 3.3.7
46
+ signing_key:
48
47
  specification_version: 4
49
48
  summary: genregen - A music genre generator.
50
49
  test_files: []