puppet-moddeps 0.3.2 → 0.3.3
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/Gemfile.lock +1 -1
- data/lib/puppet/moddeps.rb +0 -1
- data/lib/puppet/moddeps/version.rb +1 -1
- data/scripts/vagrant-user.sh +21 -21
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTdlODViYmZiNjUxOWE1ZGJhOGZkNzJlZjdlNTYyZjVlM2Q1NWZmMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MTYyMjI5M2M3NTY4Mjc4ZWY0N2FkOGIyYzQ3Y2JlMjdkYWQwNGYwMQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ODJhMzg0NTA0NDM5NjY5ZmEyODA4Njc3ZWE4ZTQ4ODNiNjZkODJjYWYyODJi
|
|
10
|
+
ZjBlNmM5MjZiNDExMmZhM2Q4OTA0MmFmMjlmYzNhM2FjN2MyMmE0NzQ2MmQ5
|
|
11
|
+
MjQxNzRhZDAyMTVkZTk5ZTJkNDAyN2Y2MGY1MmVlN2I3N2JmODA=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Y2E5MTdjMzUxNmU0NjQ2NTA5ZjE3ZDk3MDRjM2NmMTZkNjgxN2NjZWFlYTU3
|
|
14
|
+
N2Y5NWQxNDdmZjZlMzBjNjUxOTE2YzJiODNhYzYwMjc4ZGQwMzRlMTM2MjRl
|
|
15
|
+
Mzc1ODU0ODc1NDM5NWZhMjFjNjRmZTkwMTZkNTA2MjMwNWYyYWY=
|
data/Gemfile.lock
CHANGED
data/lib/puppet/moddeps.rb
CHANGED
data/scripts/vagrant-user.sh
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
## This script should be executed as the vagrant user
|
|
4
|
-
|
|
5
|
-
if [ -f '/vagrant/GitConfig' ]; then
|
|
6
|
-
cp /vagrant/GitConfig ~/.gitconfig
|
|
7
|
-
fi
|
|
8
|
-
|
|
9
|
-
# Setup RVM
|
|
10
|
-
gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
|
|
11
|
-
curl -L get.rvm.io | bash -s stable
|
|
12
|
-
source ~/.profile
|
|
13
|
-
|
|
14
|
-
# Setup Ruby 1.9.3
|
|
15
|
-
rvm install 1.9.3
|
|
16
|
-
rvm use 1.9.3
|
|
17
|
-
|
|
18
|
-
# Setup project
|
|
19
|
-
gem install bundler --no-ri --no-rdoc
|
|
20
|
-
cd puppet-moddeps
|
|
21
|
-
bundle install
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
## This script should be executed as the vagrant user
|
|
4
|
+
|
|
5
|
+
if [ -f '/vagrant/GitConfig' ]; then
|
|
6
|
+
cp /vagrant/GitConfig ~/.gitconfig
|
|
7
|
+
fi
|
|
8
|
+
|
|
9
|
+
# Setup RVM
|
|
10
|
+
gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
|
|
11
|
+
curl -L get.rvm.io | bash -s stable
|
|
12
|
+
source ~/.profile
|
|
13
|
+
|
|
14
|
+
# Setup Ruby 1.9.3
|
|
15
|
+
rvm install 1.9.3
|
|
16
|
+
rvm use 1.9.3
|
|
17
|
+
|
|
18
|
+
# Setup project
|
|
19
|
+
gem install bundler --no-ri --no-rdoc
|
|
20
|
+
cd puppet-moddeps
|
|
21
|
+
bundle install
|