hiq 0.2.3 → 0.3.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/lib/hiq/domain/filler_library.rb +101 -8
- data/lib/hiq/version.rb +1 -1
- 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: cd833461e418c6b7063c9fca031481cbcc56701dbe2eefbd199e62e024c0ccf5
|
4
|
+
data.tar.gz: '0758e4ffd51cd8535f8897d08609e318043b79a9c5678a6b6396abc835137c0e'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7175772f454d0f840eb8633209f29db081fad385a05902a2b1ce4dcbf9556087dc5ab705d6c244b33be00ce5a1679ec61c519334b31df253e97fa9da91acea1
|
7
|
+
data.tar.gz: 36e2306085e7a93f9f1bf7b1cc39c61c8a5185d0f5911723bfb55133b79e9adc4a7e832a7f45e9c573dd22c7a706375da11177a9566f5baa2c6d1c2874ef2529
|
@@ -1,23 +1,114 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# rubocop:disable Metrics/MethodLength
|
4
|
+
# rubocop:disable Metrics/ClassLength
|
5
|
+
|
3
6
|
module Hiq
|
4
7
|
# Provided of filler for lines of haiku
|
5
8
|
class FillerLibrary
|
6
9
|
def self.interpolated_fillers
|
7
10
|
{
|
8
|
-
1 => ['the X', 'a X'],
|
9
|
-
2 => ['ghastly X', 'the pale X'
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
1 => ['the X', 'a X', 'X house!'],
|
12
|
+
2 => ['ghastly X', 'the pale X', 'fog X mince', 'No X jay', 'X the bottle', 'younger X', 'X bark tight',
|
13
|
+
'with a X winds'],
|
14
|
+
3 => ['shadow of X', 'X in silence', 'the subway X', 'In the pink X', 'behind an X', 'it bus X moon',
|
15
|
+
'X the pages'],
|
16
|
+
4 => ['X of my joy fade', 'X ends the autumn', 'letter to the X', 'X in the window', 'the lines of X',
|
17
|
+
'the X scattered', 'flat fine go X call', 'from the childhood X'],
|
18
|
+
5 => ['A spark of X above', 'Slayer wind the way X'],
|
19
|
+
6 => ['the sad facade of X torn', 'afternoon from I wall X', 'X trees flutter over back ']
|
14
20
|
}
|
15
21
|
end
|
16
22
|
|
17
23
|
def self.fillers
|
18
24
|
{
|
19
|
-
5 => [
|
20
|
-
|
25
|
+
5 => [
|
26
|
+
'empty riverside',
|
27
|
+
'tears flow in the rain',
|
28
|
+
'cheerful summer\'s charm',
|
29
|
+
'A fallen leaves',
|
30
|
+
"New Year's 1ever",
|
31
|
+
'of a dog hanged',
|
32
|
+
'on the pavement',
|
33
|
+
"Valentine's Day",
|
34
|
+
'a shadow boating',
|
35
|
+
'airily balloons -',
|
36
|
+
'cup on tea music',
|
37
|
+
'evening coolness',
|
38
|
+
'finally ad bass -',
|
39
|
+
'override my amps',
|
40
|
+
'A head lit shelter',
|
41
|
+
'a bark flower pot',
|
42
|
+
'and there escapes',
|
43
|
+
'fan into too fast',
|
44
|
+
'in the holy sense',
|
45
|
+
'inside the sunset',
|
46
|
+
'listening to down',
|
47
|
+
'on a bird fingers',
|
48
|
+
'the bag of autumn',
|
49
|
+
'the bay of a dart',
|
50
|
+
'the colored world',
|
51
|
+
'after the pumpkin:',
|
52
|
+
'at the sudden hair',
|
53
|
+
'autumn leaf flames',
|
54
|
+
'comes to an end...',
|
55
|
+
'for the sun alone',
|
56
|
+
'in the young weirs',
|
57
|
+
'on a garbage truck',
|
58
|
+
'snow fall of roses',
|
59
|
+
'the saddled slower',
|
60
|
+
'a wash before sheep',
|
61
|
+
'affords hot the air',
|
62
|
+
'in the Honkers mine',
|
63
|
+
'in the fall flowing',
|
64
|
+
'milk in the morning',
|
65
|
+
'someone older bloom',
|
66
|
+
'the ash leaves splay',
|
67
|
+
'the lift of a moor,',
|
68
|
+
'the same quiet rains',
|
69
|
+
'- A hole in the rise',
|
70
|
+
'October wind through',
|
71
|
+
'headlights, whiter-et',
|
72
|
+
'i- two gold her hair',
|
73
|
+
'just up kin oil beard',
|
74
|
+
'passing my neighbor',
|
75
|
+
'pierce drippy second',
|
76
|
+
'shells in the mirror',
|
77
|
+
'the sound of a trash',
|
78
|
+
'the wild powder sack',
|
79
|
+
'the mister rams trap',
|
80
|
+
'from the first baleen',
|
81
|
+
'my mind like a candle',
|
82
|
+
'snow, leaves two pies',
|
83
|
+
'the scent of red hair',
|
84
|
+
'a flank of calm mosque',
|
85
|
+
'a fan a across',
|
86
|
+
"sin's that dawn light tide"
|
87
|
+
],
|
88
|
+
7 => [
|
89
|
+
'the vain wind of summer blows',
|
90
|
+
'gentle breeze upon a mountain',
|
91
|
+
'a frog jumps into a well',
|
92
|
+
'around my of finally',
|
93
|
+
'roses in the forecast',
|
94
|
+
'follow just overflowed',
|
95
|
+
'of a traveling machine',
|
96
|
+
'of allowed in the blade',
|
97
|
+
'under a clamping lilac -',
|
98
|
+
'on the Pony.. and snuffer',
|
99
|
+
'the blinded on a red road',
|
100
|
+
'the scent of lemon petals',
|
101
|
+
'the islands in the grab use',
|
102
|
+
'the noise of a carrier bag',
|
103
|
+
'young women clean morning -',
|
104
|
+
'an expecting moon His breaks',
|
105
|
+
'the boyfriend of my pocket -',
|
106
|
+
'Spring warding stray or a glass',
|
107
|
+
'and two pour face all the dock',
|
108
|
+
'i wish i X on buy band train',
|
109
|
+
'in the fresh of old plane candle',
|
110
|
+
"we're down the school of her hands"
|
111
|
+
]
|
21
112
|
}
|
22
113
|
end
|
23
114
|
|
@@ -37,3 +128,5 @@ module Hiq
|
|
37
128
|
end
|
38
129
|
end
|
39
130
|
end
|
131
|
+
# rubocop:enable Metrics/MethodLength
|
132
|
+
# rubocop:enable Metrics/ClassLength
|
data/lib/hiq/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Taras
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: byebug
|