rapsum 0.0.6 → 0.0.7
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/long_sentence_samples.rb +6 -1
- data/lib/names.rb +15 -0
- data/lib/rapsum.rb +5 -0
- data/lib/short_sentence_samples.rb +5 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d97cb5c3c5ff14e49311ee60dd7f11c0b0ac10c4
|
4
|
+
data.tar.gz: 93392af9df18b187f77148d8580cd801c4c00665
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45b8f1bc47a8050b3dc6b7e81738df33fe0fce8fdf48524b994152ede238ed5226b7ddcd0e227653483896d9ff7c4b1ed36d9eb0da82fde0befe8fddfb262a07
|
7
|
+
data.tar.gz: 88278e2d2744fbd315b0dba6b066d3f71f785188062d813729cb4bd9e395ec78ebce925686aea105c51a99b669f64fc23d69dcdc93d657132fbdf89a6918a678
|
@@ -3,7 +3,6 @@ LONG_SENTENCE_SAMPLES = [
|
|
3
3
|
# Big Sean - I Don't Fuck With You
|
4
4
|
"I got a million trillion things I'd rather fucking do",
|
5
5
|
"I got a bitch who text me she ain't got no clothes on",
|
6
|
-
"I could be broke and keep a million dollar smile",
|
7
6
|
|
8
7
|
# Childish Gambino - Freaks and Geeks
|
9
8
|
"Bunnies wantin to be fed, I mean hunnies oh forget it",
|
@@ -48,6 +47,12 @@ LONG_SENTENCE_SAMPLES = [
|
|
48
47
|
"This dude named Michael used to ride motorcycles",
|
49
48
|
"My anaconda don't want none unless you got buns hun",
|
50
49
|
|
50
|
+
# Nicki Minaj - Truffle Butter
|
51
|
+
"I could be broke and keep a million dollar smile",
|
52
|
+
|
53
|
+
# Shmurda - Hot Ninja
|
54
|
+
"Get that money back and spend it on the same thing",
|
55
|
+
|
51
56
|
# Tyga - Rack City
|
52
57
|
"All the hoes love me, you know what it is",
|
53
58
|
|
data/lib/names.rb
ADDED
data/lib/rapsum.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require_relative 'long_sentence_samples'
|
2
|
+
require_relative 'names'
|
2
3
|
require_relative 'short_sentence_samples'
|
3
4
|
|
4
5
|
module Rapsum
|
@@ -23,4 +24,8 @@ module Rapsum
|
|
23
24
|
SHORT_SENTENCE_SAMPLES.sample
|
24
25
|
end
|
25
26
|
|
27
|
+
def self.email
|
28
|
+
NAMES.sample + "@gmail.com"
|
29
|
+
end
|
30
|
+
|
26
31
|
end
|
@@ -89,6 +89,11 @@ SHORT_SENTENCE_SAMPLES = [
|
|
89
89
|
"Throw some more",
|
90
90
|
"The faster you spend it, the faster it go",
|
91
91
|
|
92
|
+
# Shmurda - Hot Ninja
|
93
|
+
"All I do is cash out",
|
94
|
+
"Bout a week agoooo",
|
95
|
+
"Shots poppin out the AR",
|
96
|
+
|
92
97
|
# Tyga - Rack City
|
93
98
|
"Rack city bitch",
|
94
99
|
"Rack rack city bitch",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rapsum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victoria Chuang
|
@@ -19,6 +19,7 @@ files:
|
|
19
19
|
- lib/rapsum.rb
|
20
20
|
- lib/short_sentence_samples.rb
|
21
21
|
- lib/long_sentence_samples.rb
|
22
|
+
- lib/names.rb
|
22
23
|
homepage: https://rubygems.org/gems/rapsum
|
23
24
|
licenses:
|
24
25
|
- MIT
|