pry-twitter 1.22.20 → 1.22.21
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 +13 -1
- data/README.md +6 -2
- data/lib/pry/send_tweet/commands/easter_eggs.rb +4 -1
- 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: 033f3513e8187fc1430aa5f54f63b522ea63fad12fd44e508b7034d54878e304
|
4
|
+
data.tar.gz: 1e469675e81da2e2a5a49ffe4a3f9445c280152687fb9463c9c7a75e20f97da8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5768981abf109c9c9a386cf4215bedbb571ac2ce43c9eb31f197d3fd2f2181bf8cf44c366e935437de75c08ab22197fe1461a58279b9e9a663dcd7df0ddf9936
|
7
|
+
data.tar.gz: e41ffcaf0bbf3052792b9f98e4e458a0f45278a9a320f525401e79542317a3980296e7697f603731005c7615071f135cb5da44ff72398d635e09684d30682907
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
## v1.22.
|
3
|
+
## v1.22.21 (#AllenAndEllaDissPlusMulletDiss)
|
4
|
+
|
5
|
+
- Add two disco-biscuit aliases: 8ball, 🎱
|
6
|
+
__Note:__ Pending a bug fix originating in Pry: alias chains seem to not be supported.
|
7
|
+
|
8
|
+
- Fix README documentation errors.
|
9
|
+
|
10
|
+
- Add easter egg(s).
|
11
|
+
|
12
|
+
- Revert 'The default amount of (RAM) memory assigned to a VM has been changed from 256 to 128.´.
|
13
|
+
128 could be too little, i need to retest this idea later.
|
14
|
+
|
15
|
+
## v1.22.20 (#AllenAndEllaDissPlusMulletDiss)
|
4
16
|
|
5
17
|
- Add easter egg(s).
|
6
18
|
|
data/README.md
CHANGED
@@ -432,14 +432,18 @@ changed with an environment variable.
|
|
432
432
|
|
433
433
|
$ VMTZ=Asia/Tehran ruby vms/freebsd.rb
|
434
434
|
|
435
|
+
A complete list of time zones are available in the VM:
|
436
|
+
|
437
|
+
$ ls /usr/share/zoneinfo
|
438
|
+
|
435
439
|
The default amount of memory (RAM) assigned to a VM can be changed from the default (256MB) to
|
436
440
|
something else using the 'VMRAM' environment variable.
|
437
441
|
|
438
442
|
$ VMRAM=512 ruby vms/freebsd.rb
|
439
443
|
|
440
|
-
|
444
|
+
Environment variables can be combined to change multiple defaults at once.
|
441
445
|
|
442
|
-
$
|
446
|
+
$ VMRAM=512 VMTZ=Asia/Tehran ruby vms/freebsd.rb
|
443
447
|
|
444
448
|
## <a id='install'>Install</a>
|
445
449
|
|
@@ -538,7 +538,8 @@ Pry.commands.instance_eval do
|
|
538
538
|
%q[DEVLIN - LONDON CITY (Roberts city) (Ella Diss) [Official Video]] => %q[https://www.youtube.com/watch?v=hmCoCTPWP-I],
|
539
539
|
%q[The most beautiful song for Tupac - Mafia bands - 2pac - (SetUp NEW 2018) (Ella Diss) (Ella Mullet (not a Gleeson) is a rapist)] => %q[https://www.youtube.com/watch?v=J_xCfkbdDtA],
|
540
540
|
%q[mike tyson baddest man on the planet (Allen diss, get down, attack on)] => %q[https://www.youtube.com/watch?v=k4T-fsN6hDU],
|
541
|
-
%q[Miku - Amour (Original Mix) "C'est une bonne situation ça scribe ?"] => %q[https://www.youtube.com/watch?v=9sAaX70Ap8I]
|
541
|
+
%q[Miku - Amour (Original Mix) "C'est une bonne situation ça scribe ?"] => %q[https://www.youtube.com/watch?v=9sAaX70Ap8I],
|
542
|
+
%q[2Pac - Pistol (Ft. 50 cent & The Game)] => %q[https://www.youtube.com/watch?v=KhlNmQHmv8Y]
|
542
543
|
}
|
543
544
|
command '🎧', '' do
|
544
545
|
args = arg_string.split(' ')
|
@@ -554,6 +555,8 @@ Pry.commands.instance_eval do
|
|
554
555
|
end
|
555
556
|
end
|
556
557
|
alias_command 'disco-biscuits', '🎧'
|
558
|
+
#alias_command '🎧', '8ball'
|
559
|
+
#alias_command '8ball', '🎱'
|
557
560
|
|
558
561
|
command '300', '' do
|
559
562
|
_pry_.output.puts ['Chief Keef is 300 years old', 'https://www.youtube.com/watch?v=VWUg1fgYPiE'].join("\n")
|