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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c77d25c73a296c4a067b21f8937509c6fd83e9cd
4
- data.tar.gz: 6cf661e3cac9627c3ec379e79a8f8ea1b550f686
3
+ metadata.gz: d97cb5c3c5ff14e49311ee60dd7f11c0b0ac10c4
4
+ data.tar.gz: 93392af9df18b187f77148d8580cd801c4c00665
5
5
  SHA512:
6
- metadata.gz: 86d1aaf9065fa76c8b536d748cabe6a58335a382183f1956c9f520d618e1cd72d44c736d4c9c8c1ed6cda25e473ffeb826ddb019d1257b595b053bec8b871edc
7
- data.tar.gz: 0600c4775f04746487183bfc1d99d050509f5e9c3bb0eaba0fa2477bd9af2f116a19c4887f5936c079ded12aa214a59d4ce25af8f596256ca11b5d5e77d665c4
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
@@ -0,0 +1,15 @@
1
+ NAMES = [
2
+ "beyonce",
3
+ "big_sean",
4
+ "drake",
5
+ "i_am_a_god",
6
+ "jay_z",
7
+ "kendrick",
8
+ "kanye",
9
+ "lil_wayne",
10
+ "nicki",
11
+ "queen_b",
12
+ "shmurda",
13
+ "tyga",
14
+ "z_ro",
15
+ ]
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.6
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