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 +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/development/Vagrantfile +1 -1
- data/lib/ventriloquist/cap/platforms/linux/nvm_install.rb +1 -1
- data/lib/ventriloquist/cap/utils/debian/prepare_container_for_docker.rb +1 -1
- data/lib/ventriloquist/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a2a867302ee07e9fcc01687edec120ea40aa2d4
|
|
4
|
+
data.tar.gz: 692ceb958c9ed0cadfd2db2916b6db1b9945e100
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
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
|
|
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
|
|
data/development/Vagrantfile
CHANGED
|
@@ -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://
|
|
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
|
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.
|
|
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-
|
|
11
|
+
date: 2014-05-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Vagrant development environments made easy
|
|
14
14
|
email:
|