pry-twitter 1.28.5 → 1.28.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/CHANGELOG.md +2 -2
- data/lib/pry/send_tweet/commands/easter_eggs.rb +9 -1
- data/lib/pry/send_tweet/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4878400b14cfaf2c54d8c0983455f32cd215f6955a596fa519de8756654dcb8c
|
|
4
|
+
data.tar.gz: 9c751073d016ac396acaf93b30b753faf738f36e51f084906e10fbdc29d9c836
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8324fe28c85dac28f94d8e20519397549c15e417c32419719fec68667ef657e58dde4dcaa500699722da0996d0e26825557e82c0633eb2dae395562fef5a6f43
|
|
7
|
+
data.tar.gz: 064615024222073f3e07196f4f5dbe2d8bfc326108fe446245b0812480e24aedd552e4a72890caf928346f152d3996cd7313b0356bcc9cb4c7cb3a043e1e816f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
## v1.28.0+ (#Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana #fiftygrand #BreakingBad)
|
|
3
|
+
## v1.28.0+ (#Dia #Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana #fiftygrand #BreakingBad)
|
|
4
4
|
|
|
5
|
-
- Change code name for v1.28 series to '#Leiden #EinsteinBar #ldn #Manila #kharkiv #Matilda #PrincessDiana #fiftygrand #BreakingBad'.
|
|
5
|
+
- Change code name for v1.28 series to '#Dia #Leiden #EinsteinBar #ldn #Manila #kharkiv #Matilda #PrincessDiana #fiftygrand #BreakingBad'.
|
|
6
6
|
|
|
7
7
|
## v1.27.31+ (#Matilda #MAGA #Neutral #Devlin #Putin #008 #GoldenEye #KurtKobain #AltJ #ShellShocked #ChiefKeef #TuPac #Eminem #BlueMaroc #sdot #sparkle #ldn #1root #marley)
|
|
8
8
|
|
|
@@ -611,7 +611,15 @@ Pry.commands.instance_eval do
|
|
|
611
611
|
%q[Alt-J (∆) - Matilda] => %q[https://www.youtube.com/watch?v=qbvgfEaC6GM],
|
|
612
612
|
%q[Devlin - 50 Grand ft. Skepta] => %q[https://www.youtube.com/watch?v=C81FqB1zbQU],
|
|
613
613
|
%q[Breaking Bad - Walt and Jesse say goodbye ("Say Something" music video)] => %q[https://www.youtube.com/watch?v=32oq4PLFg9A],
|
|
614
|
-
%q[Wiley Ft Devlin - Bring Them All / Holy Grime VIDEO] => %q[https://www.youtube.com/watch?v=gcroTw04i-w]
|
|
614
|
+
%q[Wiley Ft Devlin - Bring Them All / Holy Grime VIDEO] => %q[https://www.youtube.com/watch?v=gcroTw04i-w],
|
|
615
|
+
%q[50 Cent - You Should Be Dead - Music Video] => %q[https://www.youtube.com/watch?v=-kWVb_LQVgE],
|
|
616
|
+
%q[Devlin - Giant] => %q[https://www.youtube.com/watch?v=uBNvjlW4xb4],
|
|
617
|
+
%q[Syer B x Devlin - "Something In The Water"] => %q[https://www.youtube.com/watch?v=RV6WcLaX9RI],
|
|
618
|
+
%q[Mike Tyson In His Prime - POWER (HD)] => %q[https://www.youtube.com/watch?v=jvNF9Z0ESck],
|
|
619
|
+
%q[MIXTAPE PalmTherapy x Anthony Keyrouz /LIVE from LEBANON/] => %q[https://www.youtube.com/watch?v=9bf2vh9kQ84],
|
|
620
|
+
%q{LEWI WHITE - YOUNG GUNS (FT. DEVLIN, ED SHEERAN, YASMIN, GRIMINAL) [OFFICIAL MUSIC VIDEO - HD]} => %q[https://www.youtube.com/watch?v=UIsDhcu7HIo],
|
|
621
|
+
%q[Tool - Forty Six and two] => %q[https://www.youtube.com/watch?v=f8aT9oRp95A],
|
|
622
|
+
%q[@kyrylosilin Rocky Balboa Tribute] => %q[https://www.youtube.com/watch?v=I_RDr4PFwSo]
|
|
615
623
|
}
|
|
616
624
|
command '🎧', '' do
|
|
617
625
|
args = arg_string.split(' ')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
class Pry
|
|
2
2
|
module SendTweet
|
|
3
|
-
VERSION = '1.28.
|
|
4
|
-
CODENAME = %q{#Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana #fiftygrand #BreakingBad}
|
|
3
|
+
VERSION = '1.28.7'
|
|
4
|
+
CODENAME = %q{#Dia #Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana #fiftygrand #BreakingBad}
|
|
5
5
|
end
|
|
6
6
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pry-twitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.28.
|
|
4
|
+
version: 1.28.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fry developers
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
- - "~>"
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '1.4'
|
|
56
|
-
description: 'CodeName: #Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana
|
|
56
|
+
description: 'CodeName: #Dia #Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana
|
|
57
57
|
#fiftygrand #BreakingBad ... An extensible Twitter client living inside the Fry
|
|
58
58
|
and Pry REPLs.'
|
|
59
59
|
email: trebor.macg8@protonmail.com
|
|
@@ -144,7 +144,7 @@ requirements: []
|
|
|
144
144
|
rubygems_version: 3.0.1
|
|
145
145
|
signing_key:
|
|
146
146
|
specification_version: 4
|
|
147
|
-
summary: 'CodeName: #Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana
|
|
147
|
+
summary: 'CodeName: #Dia #Leiden #EinsteinBar #Matilda #Manila #kharkiv #ldn #PrincessDiana
|
|
148
148
|
#fiftygrand #BreakingBad ... An extensible Twitter client living inside the Fry
|
|
149
149
|
and Pry REPLs.'
|
|
150
150
|
test_files: []
|