pry-twitter 1.22.1 → 1.22.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2c64917c74fa74bf29beb85432344272923f323210e833a8fd56dd799ea1ab3
4
- data.tar.gz: e97fdb33bb066d9a95f28bed21c2a37072d06a53a71be65a0ab0b7f149db23de
3
+ metadata.gz: f0b26325ed35c0f53be73dbe8f40c1d095eae968819b6278ceb41d20dd148822
4
+ data.tar.gz: 5a3dd2b7379244d6ed93ee954b614c2761b8e056cc18c239320b468c8add1acf
5
5
  SHA512:
6
- metadata.gz: de0a206360b6c0b954a4ba9f3ebfbf6c4e9c4c4756aed75ad0beebd282e30dacb3f3ebab31cb23429c2fac97a27d270f6269331077b6a7bb3f5cbcf8d3fc7bd5
7
- data.tar.gz: cd1417dcb25a259dd44452889eda2fb2b454136d77d575ef07b1cba99c7741ecfb4e73858e648db6e3a97a98634057b4f1da024337874d71cbda2f79cb5c4cc2
6
+ metadata.gz: 0fa097136e72fa85ed81b51a42fc310e3aa97020f49e4f5caa33da1009b5a8e4d6b5192b8ddd42839b4e2fdd4eac1dc0c01c208ca09a725143801f927656ba55
7
+ data.tar.gz: 8b11054b0a8e3a8701b0233d8201db1c15cba34bb4f9d45e4901f81fc7f642dcdb24b786023b7d0f5f540f4aa907506f1874a8e0d95845af7a8bf1279d558d79
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v1.22.2 (#Charlie)
4
+
5
+ - Switch to official FreeBSD box image.
6
+
7
+ - Add music
8
+
9
+ - Upgrade FreeBSD VM to version 13 (-CURRENT).
10
+
3
11
  ## v1.22.1 (#Charlie)
4
12
 
5
13
  - Remove Pry authorship from Fry.
@@ -6,7 +6,7 @@ insert_root_path = ->(tmux_conf) {
6
6
  }
7
7
 
8
8
  Vagrant.configure("2") do |config|
9
- config.vm.box = "generic/freebsd12"
9
+ config.vm.box = "freebsd/FreeBSD-13.0-CURRENT"
10
10
  config.vm.synced_folder Dir.getwd, "/app", type: "rsync"
11
11
 
12
12
  config.vm.provider "virtualbox" do |vb|
@@ -18,7 +18,7 @@ class Pry::SendTweet::BaseCommand < Pry::ClassCommand
18
18
  raise Pry::CommandError, "_pry_.config.twitter is nil!\n" \
19
19
  "Please set the required keys and tokens to send " \
20
20
  "tweets using Twitters API. \n" \
21
- "Visit https://gitlab/trebor8/fry-send_tweet.rb to learn how."
21
+ "Visit https://gitlab.com/trebor8/fry-send_tweet.rb to learn how."
22
22
  end
23
23
  end
24
24
 
@@ -520,7 +520,8 @@ Pry.commands.instance_eval do
520
520
  %q[[†] Terry Davis Drum Cover Metallica] => %q[https://www.youtube.com/watch?v=lQu-7DvtPEQ],
521
521
  %q[Diana is next. Terry strikes back.] => %q[https://www.youtube.com/watch?v=rCLBGY0huVE],
522
522
  %q[Anyone remember when Perl was in the base of FreeBSD? What happpened? FreeBSD removed fun languages from their base. What did OSX do? Add all of them. Wake up @FreeBSD] => %q[https://www.youtube.com/watch?v=WPauDSUnBeU],
523
- %q[@rubygems removed my voice, i cant sign up anymore, well fuck you, you're not living on my glory anymore, i'll own all of you ] => %q[https://www.youtube.com/watch?v=-LdYXYNtPJI]
523
+ %q[@rubygems removed my voice, i cant sign up anymore, well fuck you, you're not living on my glory anymore, i'll own all of you ] => %q[https://www.youtube.com/watch?v=-LdYXYNtPJI],
524
+ %q[There are 13 letters in my name, in the English language, but 14 in other languages, 13, unlucky for some, 14, lucky for some.] => %q[https://www.youtube.com/watch?v=cvvd-9azD1M]
524
525
  }
525
526
  command '🎧', '' do
526
527
  args = arg_string.split(' ')
@@ -1,6 +1,6 @@
1
1
  class Pry
2
2
  module SendTweet
3
- VERSION = '1.22.1'
3
+ VERSION = '1.22.2'
4
4
  CODENAME = %q{#Charlie}
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.22.1
4
+ version: 1.22.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fry developers