ventriloquist 0.5.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb79b6f3f2aca4996289263b71f00b7c287d2147
4
- data.tar.gz: c7fa55870588d8600bebf38e98e34b4afe6ee6e8
3
+ metadata.gz: 4a2a867302ee07e9fcc01687edec120ea40aa2d4
4
+ data.tar.gz: 692ceb958c9ed0cadfd2db2916b6db1b9945e100
5
5
  SHA512:
6
- metadata.gz: edf98aed4a75d4c6b8cb77069fc90d5fc358a364950819e509e331f64d41cc70791ac6f0bb640b08fa69f50535c9bc481becdffae3d12d24aa2d6f2e0702a38a
7
- data.tar.gz: 96e17b1498023728c600b1e00399d84513141de538072dbde3c159e719dc16d1acf7091878cdf76d88a81c584b404a4bfaaeadf621d505a968b9abec4d1d233c
6
+ metadata.gz: 92d46f12fbb130e0100abcb1254c17231307f82d4788cd0867ab79f127214fbdc058e94a545b7a482ab2b9d60835b63653e6486c4c82fa09cf0fc54d7501bacb
7
+ data.tar.gz: d590ec2059e392305c4c6bf21877ff52b051a35354dcf19a081efa012ff9e6f918e3c6cb681f94e807712a67e6d00a34557f2b53d4dc78a1ba47d5dbc294e743
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.5.1](https://github.com/fgrehm/ventriloquist/compare/v0.5.0...v0.5.1) (May 03, 2014)
2
+
3
+ BUG FIXES:
4
+
5
+ - Fix nodejs installation
6
+ - Improve usage with vagrant-lxc containers
7
+
8
+
1
9
  ## [0.5.0](https://github.com/fgrehm/ventriloquist/compare/v0.4.1...v0.5.0) (Apr 06, 2014)
2
10
 
3
11
  BACKWARDS INCOMPATIBILITY:
data/Gemfile.lock CHANGED
@@ -36,7 +36,7 @@ GIT
36
36
  PATH
37
37
  remote: .
38
38
  specs:
39
- ventriloquist (0.5.0)
39
+ ventriloquist (0.5.1)
40
40
 
41
41
  GEM
42
42
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -157,7 +157,7 @@ _See http://docs.vagrantup.com/v2/provisioning/docker.html for other arguments_
157
157
  | go | Downloads from https://code.google.com/p/go/downloads/list |
158
158
  | nodejs | Uses nvm for installing node versions |
159
159
  | phantomjs | Downloads from https://bitbucket.org/ariya/phantomjs/downloads or https://code.google.com/p/phantomjs/downloads/list |
160
- | erlang | The latest version available at https://packages.erlang-solutions.com/erlang/ (currently R16B03-1) |
160
+ | erlang | The latest version available at https://packages.erlang-solutions.com/erlang/ (currently 17.0) |
161
161
  | elixir | Downloads from https://github.com/elixir-lang/elixir/releases |
162
162
  | python | Uses pyenv for installing python versions |
163
163
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  Vagrant.configure("2") do |config|
5
5
  config.vm.provider :lxc do |lxc, override|
6
- override.vm.box = 'fgrehm/raring64-lxc'
6
+ override.vm.box = 'fgrehm/trusty64-lxc'
7
7
  # Required to boot nested containers
8
8
  lxc.customize 'aa_profile', 'unconfined'
9
9
  end
@@ -6,7 +6,7 @@ module VagrantPlugins
6
6
  def self.nvm_install(machine)
7
7
  if ! machine.communicate.test('test -d $HOME/.nvm')
8
8
  machine.env.ui.info('Installing NVM')
9
- machine.communicate.execute('\curl https://raw.github.com/creationix/nvm/master/install.sh | sh')
9
+ machine.communicate.execute('\curl -L https://github.com/creationix/nvm/raw/master/install.sh | sh')
10
10
  end
11
11
  end
12
12
  end
@@ -24,7 +24,7 @@ apt-get install -y --force-yes lxc \
24
24
  cat <<STR >> /etc/default/docker
25
25
  DOCKER_OPTS="-e lxc ${DOCKER_OPTS}"
26
26
  STR
27
- service docker restart'
27
+ service docker restart && sleep 5'
28
28
  end
29
29
  end
30
30
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Ventriloquist
3
- VERSION = "0.5.0"
3
+ VERSION = "0.5.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ventriloquist
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabio Rehm
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-07 00:00:00.000000000 Z
11
+ date: 2014-05-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Vagrant development environments made easy
14
14
  email: