pry-send_tweet.rb 1.16.7 → 1.16.8

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: 6f7101ed229def956551ccc7666725d4cc90a4bf3dd0664abf7154d8cba467d0
4
- data.tar.gz: 0a1338a934eb008d5da29f06e26f373e29bcf376758e2f798fef238527fe75b9
3
+ metadata.gz: ec091f6532f91320bb357813b5258cd0f80a3c9c9c2c1f80ba3730b08d6d431b
4
+ data.tar.gz: 391cb620d64ddef97685dd35a6a18327f8b45d60af51dc27210044f85096787a
5
5
  SHA512:
6
- metadata.gz: a6f0406a856467ab64e8645523be303c7832cb828621483b517523f6aa560a87e6124056f98a3e1fc825a23cf588c8ebd80a78761285994600f2cc0236777e02
7
- data.tar.gz: 961e0ae800752c816ccd62b920dbb5ec92751de7803df533b794ecea1e5dfaec7fa5664ee9993c828b2e73c74ff615be7b1e5cdee49acee91db91baf490bb713
6
+ metadata.gz: 8ed220d78effeb657ae7ddc9f0e7a3ef05d1245d9f46b0635000f46414604ceed01848f0b49cacd1d9b0777311e9cc302c5446a84fbb09e86859bf06eb25c392
7
+ data.tar.gz: f6174837a045e27f2d31fa265e1dd8218da38d61c9ac2a11e96014dbda75209afea71fd8f7af60d7723dcb66377ae0759ce8b533c153fe144a8a70a8191104f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v1.16.8
4
+
5
+ * Improve README documentation
6
+
7
+ * Alter the FreeBSD VM to use an in-memory file system but I didn't confirm it
8
+ works. Might later. Might not.
9
+
3
10
  ## v1.16.7
4
11
 
5
12
  * The Last Mohican, The Last ..... It was your last chance.
data/README.md CHANGED
@@ -378,8 +378,9 @@ hope that it might be useful to others.
378
378
  Before getting started with a Virtual Machine, download and install the
379
379
  following tools if you didn't already, they're free:
380
380
 
381
- * VirtualBox
382
- * Vagrant
381
+ * [VirtualBox](https://www.virtualbox.org/)
382
+ * [Vagrant](https://www.vagrantup.com/)
383
+ * `vagrant-reload` (Run `vagrant plugin install vagrant-reload`)
383
384
 
384
385
  Next, configure access to the Twitter API by adding `.pryrc` file to the root of
385
386
  the repository. That's covered in the [configuration](#configuration) section.
data/Vagrantfile CHANGED
@@ -5,6 +5,8 @@ insert_root_path = ->(tmux_conf) {
5
5
  YAML.dump(conf)
6
6
  }
7
7
 
8
+ Vagrant.require_plugin "vagrant-reload"
9
+
8
10
  Vagrant.configure("2") do |config|
9
11
  config.vm.box = "generic/freebsd12"
10
12
  config.vm.synced_folder Dir.getwd, "/app", type: "rsync"
@@ -30,6 +32,7 @@ Vagrant.configure("2") do |config|
30
32
  # Insert files into VM
31
33
  tmux_conf = insert_root_path.call File.binread('./samples/tmuxinator-vagrant.yml')
32
34
  cmds = [
35
+ "sudo echo '#{File.binread('./samples/loader.conf')}' > /boot/loader.conf",
33
36
  "echo '#{File.binread('./samples/freebsd-zshrc')}' > /home/vagrant/.zshrc",
34
37
  "mkdir -p /home/vagrant/.config/tmuxinator",
35
38
  "echo #{Shellwords.shellescape(tmux_conf)} > /home/vagrant/.config/tmuxinator/pry_send_tweet.yml"
@@ -43,4 +46,5 @@ Vagrant.configure("2") do |config|
43
46
  "rubygem-tty-box rubygem-unicode-display_width"
44
47
  ]
45
48
  config.vm.provision "shell", inline: cmds.join(' && ')
49
+ config.vm.provision :reload
46
50
  end
@@ -1,6 +1,6 @@
1
1
  class Pry
2
2
  module SendTweet
3
- VERSION = '1.16.7'
3
+ VERSION = '1.16.8'
4
4
  CODENAME = 'IslamMeetsBrasil'
5
5
  end
6
6
  end
@@ -0,0 +1 @@
1
+ tmpfs_load="YES"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-send_tweet.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.7
4
+ version: 1.16.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pry developers
@@ -102,6 +102,7 @@ files:
102
102
  - lib/time-ago-in-words/time-ago-in-words.gemspec
103
103
  - pry-send_tweet.gemspec
104
104
  - samples/freebsd-zshrc
105
+ - samples/loader.conf
105
106
  - samples/tmuxinator-vagrant.yml
106
107
  - vms/freebsd.rb
107
108
  homepage: https://gitlab.com/trebor8/fry-send_tweet.rb