vagrant-solidus 2.0.1 → 2.0.2
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 +8 -8
- data/CHANGELOG.md +4 -0
- data/lib/vagrant-solidus/provisioner.rb +8 -2
- data/lib/vagrant-solidus/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MWNhOTM5MTEwNGRlNTRhZDA5M2UxODBhMjFiOWYwYzdmN2Y1MGZhZA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTdhMDA5ZjA2OTM4ZTdjNmZhZmNhYzYwNGM2NGYzOTg4MjVkYjJmMA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NWJkYjljMzAxN2ZiZmY3YzdmYmJlZjA1M2RkYzQzZjIzODkyMjVmYjcwMGFj
|
|
10
|
+
ZTU4YTdjY2M5ZjRmZDA4ZGQ1MThhNDFjOWZhY2MwMjg3NWQ1NTIyODQyN2Zh
|
|
11
|
+
NTg5ZGYxN2E0MDNmZjkzMzU5ZTg3YzVjNGEzNzdmNTE1OTkwMjg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MzVhYmM2NWU3MzUzOTI4ZjM1NjFlYjU3OTAxYWMwNDIxYWQ4NjU0NDNmNmE1
|
|
14
|
+
Mzk0OWZmNmM2NzQ1ZWIwMWI4MjM0NGQ3OWJjZGQ2ZWYzZWJiNmZlZDEyNTcw
|
|
15
|
+
ODExMDBmZjAxYjg1MWY0NTVlZDE2YTMxZjM1ZTAyZjY4NmFmMGU=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 2.0.2 (May 7, 2015)
|
|
2
|
+
|
|
3
|
+
- Load nvm in non-interactive shells, install bundler in provisioner [[fde6873](https://github.com/solidusjs/vagrant-solidus/commit/fde6873241d1975adef9a5e3866714c08385fa81)]
|
|
4
|
+
|
|
1
5
|
## 2.0.1 (May 7, 2015)
|
|
2
6
|
|
|
3
7
|
- Fix status command [[07741d6](https://github.com/solidusjs/vagrant-solidus/commit/07741d63646598a233235e393f067632e78ec8d5)]
|
|
@@ -33,8 +33,11 @@ module VagrantPlugins
|
|
|
33
33
|
execute('apt-get -y install dos2unix', sudo: true)
|
|
34
34
|
|
|
35
35
|
@env.ui.info('Installing nvm')
|
|
36
|
-
execute('curl -s https://raw.githubusercontent.com/creationix/nvm/v0.25.1/install.sh |
|
|
37
|
-
|
|
36
|
+
execute('curl -s -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.1/install.sh | bash')
|
|
37
|
+
unless guest_exec(nil, 'grep NVM_DIR ~/.profile')
|
|
38
|
+
execute('echo \'export NVM_DIR="/home/vagrant/.nvm"\' >> ~/.profile')
|
|
39
|
+
execute('echo \'[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm\' >> ~/.profile')
|
|
40
|
+
end
|
|
38
41
|
|
|
39
42
|
# Install a default node.js version, it will be used for grunt-init and when ssh'ing into the box
|
|
40
43
|
@env.ui.info('Installing node.js')
|
|
@@ -59,6 +62,9 @@ module VagrantPlugins
|
|
|
59
62
|
execute('rvm rvmrc warning ignore allGemfiles')
|
|
60
63
|
execute('rvm use --default ruby-1.9.3-p545')
|
|
61
64
|
|
|
65
|
+
@env.ui.info('Installing bundler')
|
|
66
|
+
execute('gem install bundler')
|
|
67
|
+
|
|
62
68
|
@env.ui.info('Updating libstdc++')
|
|
63
69
|
execute('apt-get -y install python-software-properties', sudo: true)
|
|
64
70
|
execute('add-apt-repository -y ppa:ubuntu-toolchain-r/test', sudo: true)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-solidus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joannic Laborde
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-05-
|
|
11
|
+
date: 2015-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|