ventriloquist 0.2.0 → 0.2.1

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
  SHA1:
3
- metadata.gz: 82064f44e25d2e9a5ee7ea37eabb54ad37c6c2d1
4
- data.tar.gz: 6935426176d13de57a75f25f657a000da4b702aa
3
+ metadata.gz: cd4971f545c453a892142ee6178266d29df7e453
4
+ data.tar.gz: 23399080896e6e30558ee28697fa16c0bf3b51ee
5
5
  SHA512:
6
- metadata.gz: 5811c24a91a30e7f14c409e7f9aeccc91a68ea619e865d815194676397e131330ecb2c86d4b8ef0b33e5dde71b6d24880d63e0f8519a0d08b909b2347a62ef8c
7
- data.tar.gz: 0d68175655d58a09e2a38d69a1f98aa3a75f0cc80780c47a60cdf8e231b7c551f3ae8530398539e96706e8f5b9ed32f124e163220a269ab69c00761d77fc5160
6
+ metadata.gz: 61ce67a1d4dd042faae1cd421aaedef5155e9497a5d9997a16cce463efab44eb8d4e5d2c663b670c19ca73d1c4de91823a3b16abc677416bd46af7919974a3e2
7
+ data.tar.gz: 595f5e34bf1fa1a7c6d57d2412910157b53192bd09963747c930f85868e44b5daeaf832ccc2615770bdc36227feb38df69d04c20423c53c4647dd66cae9277ff
data/.gitignore CHANGED
@@ -15,3 +15,4 @@ test/tmp
15
15
  test/version_tmp
16
16
  tmp
17
17
  .vagrant
18
+ .DS_Store
data/CHANGELOG.md CHANGED
@@ -1,9 +1,15 @@
1
+ ## [0.2.1](https://github.com/fgrehm/ventriloquist/compare/v0.2.0...v0.2.1) (October 12, 2013)
2
+
3
+ FEATURES:
4
+
5
+ - Make use of nvm for when installing nodejs, allowing installation of any nodejs version
6
+ instead of what's available at https://launchpad.net/~chris-lea/+archive/node.js [[GH-22]]
7
+
1
8
  ## [0.2.0](https://github.com/fgrehm/ventriloquist/compare/v0.1.0...v0.2.0) (October 3, 2013)
2
9
 
3
10
  FEATURES:
4
11
 
5
12
  - Erlang support [[GH-12]]
6
- - Solr service [[GH-13]]
7
13
  - MailCatcher service [[GH-8]]
8
14
 
9
15
  BUG FIXES:
@@ -17,6 +23,6 @@ BUG FIXES:
17
23
 
18
24
 
19
25
 
26
+ [GH-22]: https://github.com/fgrehm/ventriloquist/issues/22
20
27
  [GH-12]: https://github.com/fgrehm/ventriloquist/issues/12
21
- [GH-13]: https://github.com/fgrehm/ventriloquist/issues/13
22
28
  [GH-8]: https://github.com/fgrehm/ventriloquist/issues/8
data/Gemfile.lock CHANGED
@@ -38,7 +38,7 @@ GIT
38
38
  PATH
39
39
  remote: .
40
40
  specs:
41
- ventriloquist (0.2.0)
41
+ ventriloquist (0.2.1)
42
42
  vocker (~> 0.3.1)
43
43
 
44
44
  GEM
data/README.md CHANGED
@@ -146,8 +146,9 @@ Request with the scripts required to set things for other platforms:
146
146
  | --------- | ---------------- |
147
147
  | ruby | rvm + Ruby 2.0.0 |
148
148
  | go | 1.1.2 |
149
- | nodejs | Currently limited to the latest version available at https://launchpad.net/~chris-lea/+archive/node.js (0.10.17 as of this writing) |
149
+ | nodejs | nvm + Nodejs |
150
150
  | phantomjs | 1.9.1 |
151
+ | erlang | Currently limited to the latest version available at https://packages.erlang-solutions.com/erlang/ (currently R16B02) |
151
152
 
152
153
 
153
154
  ## Ideas for improvements
@@ -0,0 +1,16 @@
1
+ module VagrantPlugins
2
+ module Ventriloquist
3
+ module Cap
4
+ module Linux
5
+ module NvmInstall
6
+ def self.nvm_install(machine)
7
+ if ! machine.communicate.test('test -d $HOME/.nvm')
8
+ machine.env.ui.info('Installing NVM')
9
+ machine.communicate.execute('\curl https://raw.github.com/creationix/nvm/master/install.sh | sh')
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,17 @@
1
+ module VagrantPlugins
2
+ module Ventriloquist
3
+ module Cap
4
+ module Linux
5
+ module NvmInstallNodeJS
6
+ def self.nvm_install_nodejs(machine, version)
7
+ if ! machine.communicate.test("nvm ls | grep #{version}")
8
+ machine.env.ui.info("Installing NodeJS #{version}")
9
+ machine.communicate.execute("nvm install #{version}")
10
+ machine.communicate.execute("nvm alias default #{version}")
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -3,7 +3,11 @@ module VagrantPlugins
3
3
  module Platforms
4
4
  class NodeJS < Platform
5
5
  def provision(machine)
6
- machine.guest.capability(:nodejs_install)
6
+ @config[:version] = '0.10' if @config[:version] == 'latest'
7
+ machine.guest.tap do |guest|
8
+ guest.capability(:nvm_install)
9
+ guest.capability(:nvm_install_nodejs, @config[:version])
10
+ end
7
11
  end
8
12
  end
9
13
  end
@@ -90,9 +90,14 @@ module VagrantPlugins
90
90
  Cap::Linux::Untar
91
91
  end
92
92
 
93
- guest_capability("debian", "nodejs_install") do
94
- require_relative "cap/debian/nodejs_install"
95
- Cap::Debian::NodejsInstall
93
+ guest_capability("linux", "nvm_install") do
94
+ require_relative "cap/linux/nvm_install"
95
+ Cap::Linux::NvmInstall
96
+ end
97
+
98
+ guest_capability("linux", "nvm_install_nodejs") do
99
+ require_relative "cap/linux/nvm_install_nodejs"
100
+ Cap::Linux::NvmInstallNodeJS
96
101
  end
97
102
 
98
103
  guest_capability("linux", "rvm_install") do
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Ventriloquist
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.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.2.0
4
+ version: 0.2.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: 2013-10-03 00:00:00.000000000 Z
11
+ date: 2013-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: vocker
@@ -50,7 +50,6 @@ files:
50
50
  - lib/ventriloquist/cap/debian/mercurial_install.rb
51
51
  - lib/ventriloquist/cap/debian/mysql_install_client.rb
52
52
  - lib/ventriloquist/cap/debian/mysql_install_headers.rb
53
- - lib/ventriloquist/cap/debian/nodejs_install.rb
54
53
  - lib/ventriloquist/cap/debian/pg_install_client.rb
55
54
  - lib/ventriloquist/cap/debian/pg_install_headers.rb
56
55
  - lib/ventriloquist/cap/debian/phantomjs_install.rb
@@ -58,6 +57,8 @@ files:
58
57
  - lib/ventriloquist/cap/linux/download.rb
59
58
  - lib/ventriloquist/cap/linux/make.rb
60
59
  - lib/ventriloquist/cap/linux/mysql_configure_client.rb
60
+ - lib/ventriloquist/cap/linux/nvm_install.rb
61
+ - lib/ventriloquist/cap/linux/nvm_install_nodejs.rb
61
62
  - lib/ventriloquist/cap/linux/pg_export_pghost.rb
62
63
  - lib/ventriloquist/cap/linux/rvm_install.rb
63
64
  - lib/ventriloquist/cap/linux/rvm_install_ruby.rb
@@ -123,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
124
  version: '0'
124
125
  requirements: []
125
126
  rubyforge_project:
126
- rubygems_version: 2.0.7
127
+ rubygems_version: 2.1.5
127
128
  signing_key:
128
129
  specification_version: 4
129
130
  summary: Vagrant development environments made easy
@@ -1,21 +0,0 @@
1
- module VagrantPlugins
2
- module Ventriloquist
3
- module Cap
4
- module Debian
5
- module NodejsInstall
6
- def self.nodejs_install(machine)
7
- return if machine.communicate.test('which nodejs > /dev/null')
8
-
9
- machine.env.ui.info('Installing nodejs')
10
- machine.communicate.tap do |comm|
11
- comm.sudo('apt-get install -y software-properties-common')
12
- comm.sudo('add-apt-repository -y ppa:chris-lea/node.js')
13
- comm.sudo('apt-get update')
14
- comm.sudo("apt-get install -y nodejs")
15
- end
16
- end
17
- end
18
- end
19
- end
20
- end
21
- end