rapsum 0.0.2 → 0.0.3
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/rapsum.rb +33 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5283e812dfcccb5bd4f52616f06d6d00b784f1b5
|
4
|
+
data.tar.gz: a47022b4e71a77381abd409ea25a6015735b436f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45798643925af364ab0a04b11ff0de9f2a9f837603cdc44ca89a16cf63449810dd9ffd0549fba5e15c34f58ba6f9d0c9a64883ebcca6eef5efd21d3f522f61a5
|
7
|
+
data.tar.gz: 2d09ff0183da1f416eaa7fad301401684b43035279079a5b72ea46e267059e0641a4a2ddd1c59cac012e915e1277b9273ea1b1d3d533d6df6dfb5b1bcfa9ec2a
|
data/lib/rapsum.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
|
+
# require 'date'
|
2
|
+
|
1
3
|
SHORT_SENTENCE_SAMPLES = [
|
2
4
|
|
3
5
|
# 7-11 - Beyonce
|
4
6
|
"Smack it in the air.",
|
5
7
|
"Spinnin' while my hands up.",
|
6
8
|
"Hold that cup like alcohol.",
|
7
|
-
|
9
|
+
"This here like rolling dice.",
|
8
10
|
|
9
11
|
# Flawless - Beyonce
|
10
12
|
"#flawless.",
|
@@ -19,7 +21,7 @@ SHORT_SENTENCE_SAMPLES = [
|
|
19
21
|
"I came, I saw, I conquered, I balled.",
|
20
22
|
|
21
23
|
# Truffle Butter - Nicki Minaj
|
22
|
-
"I must a quarter milli on me right now.",
|
24
|
+
"I must have a quarter milli on me right now.",
|
23
25
|
"New flow I got a dozen of them.",
|
24
26
|
"Talkin filets with the truffle butter.",
|
25
27
|
"I ain't gotta compete with a single soul.",
|
@@ -50,6 +52,27 @@ SHORT_SENTENCE_SAMPLES = [
|
|
50
52
|
|
51
53
|
# Left Right - YG
|
52
54
|
"Left, left right.",
|
55
|
+
|
56
|
+
# 0 to 100 - Drake
|
57
|
+
"We go 0 to 100 real quick.",
|
58
|
+
"Real fucking quick.",
|
59
|
+
|
60
|
+
# Bound 2 - Kanye West
|
61
|
+
"Uhuh honey.",
|
62
|
+
|
63
|
+
# Gold Digger - Kanye West
|
64
|
+
"I ain't sayin she a gold digger.",
|
65
|
+
|
66
|
+
# Believe Me - Drake
|
67
|
+
"I'm the only one that get the job done.",
|
68
|
+
|
69
|
+
# On to the Next One - Jay-Z
|
70
|
+
"On to the next one.",
|
71
|
+
"Now double your money and make it stack.",
|
72
|
+
"Somebody bring me back some money please.",
|
73
|
+
|
74
|
+
|
75
|
+
"Squad going up.",
|
53
76
|
|
54
77
|
]
|
55
78
|
|
@@ -74,6 +97,14 @@ LONG_SENTENCE_SAMPLES = [
|
|
74
97
|
"But I'm big on the west like I'm big in the south.",
|
75
98
|
"I would pinky swear but my pinky ring too big.",
|
76
99
|
|
100
|
+
# 0 to 100 - Drake
|
101
|
+
"I don't feel this shit, not even a little bit.",
|
102
|
+
"She gon be upset if she keeps scrolling to the left.",
|
103
|
+
|
104
|
+
|
105
|
+
# "Club going up on a #{Date::DAYNAMES[Date.today.wday]}.",
|
106
|
+
"Club going up on a #{Time.now.strftime("%A")}.",
|
107
|
+
|
77
108
|
]
|
78
109
|
|
79
110
|
module Rapsum
|