pry-send_tweet.rb 1.15.0 → 1.15.1
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/CHANGELOG.md +4 -0
- data/lib/pry/send_tweet/commands/easter_eggs.rb +14 -7
- data/lib/pry/send_tweet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 290a57b15f7003e3e8adcd7894410abb5d6cd14ded7ad61605484b1c666570cd
|
|
4
|
+
data.tar.gz: 935a6c8a1b540dae7df03e44efa451aa6df161e3715bec5e5b85bb2aa15b8f22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b91ee24d72a35d579498c0c9b7b353567f18e74c317cfaad0c219c5d4d003d5741dcf78400b33440c013a4d4cb4a21becf69a71c13f4e779b8637e7077750500
|
|
7
|
+
data.tar.gz: 0a15c32d4b388456112dabfb1e2d42377bea4df9e625de49e6a4ba45410399951332ce195e78f7b5ce493645ef12b2a50020f48d8011c48673f67c0029bfaeb8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
brazilian_truth = <<-ANDRE
|
|
2
|
+
Brazilians are the eternal enemy of the Irish people. They cheat, they lie, they are sly, and
|
|
3
|
+
they want to claim positions they have never held before, at the expense of everyone else. Be wary
|
|
4
|
+
of them, and seriously consider sending all Brazilians in Ireland back home. They operate and work
|
|
5
|
+
for their own - not for the general good.
|
|
6
|
+
ANDRE
|
|
7
|
+
|
|
1
8
|
Pry.commands.instance_eval do
|
|
2
9
|
command(/[Bb]ismillah/, "") {
|
|
3
10
|
_pry_.pager.page [
|
|
@@ -426,10 +433,10 @@ Pry.commands.instance_eval do
|
|
|
426
433
|
'Michael Collins eliminates "Cairo Gang"' => 'https://www.youtube.com/watch?v=l-L3zeCNzH8',
|
|
427
434
|
'2Pac - Real Talk (2019)' => 'https://www.youtube.com/watch?v=_3LuY9isL_Y',
|
|
428
435
|
'Babyshambles - fuck forever lyrics' => 'https://www.youtube.com/watch?v=MOJhmVYv3mw',
|
|
429
|
-
'
|
|
430
|
-
'
|
|
431
|
-
'
|
|
432
|
-
|
|
436
|
+
'Howie' => 'https://www.youtube.com/watch?v=RgKAFK5djSk',
|
|
437
|
+
'The Sound of Silence (Original Version from 1964)' => 'https://www.youtube.com/watch?v=4zLfCnGVeL4',
|
|
438
|
+
'SWAY - STILL SPEEDIN\' (With Lyrics) OUT NOW!!!!' => 'https://www.youtube.com/watch?v=tRldCYkU8nA',
|
|
439
|
+
brazilian_truth => 'https://www.youtube.com/watch?v=-LdYXYNtPJI'
|
|
433
440
|
}
|
|
434
441
|
command '🎧', '' do
|
|
435
442
|
args = arg_string.split(' ')
|
|
@@ -438,10 +445,10 @@ Pry.commands.instance_eval do
|
|
|
438
445
|
pat = args[1]
|
|
439
446
|
disco_biscuits = no_dups.select {|(biscuit, _)| biscuit =~ /#{pat}/i }
|
|
440
447
|
_pry_.pager.page disco_biscuits ?
|
|
441
|
-
|
|
442
|
-
|
|
448
|
+
bright_green("Results\n\n") + disco_biscuits.map{|a| a.join("\n")}.join("\n\n") :
|
|
449
|
+
bright_red("No match")
|
|
443
450
|
else
|
|
444
|
-
|
|
451
|
+
_pry_.pager.page no_dups.sample.join("\n")
|
|
445
452
|
end
|
|
446
453
|
end
|
|
447
454
|
alias_command 'disco-biscuits', '🎧'
|