veewee 0.1.28 → 0.1.29

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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- veewee (0.1.28)
4
+ veewee (0.1.29)
5
5
  cucumber (= 0.8.5)
6
6
  highline (~> 1.6.1)
7
7
  net-ssh (~> 2.1.0)
@@ -1,3 +1,3 @@
1
1
  module Veewee
2
- VERSION = "0.1.28"
2
+ VERSION = "0.1.29"
3
3
  end
@@ -144,8 +144,8 @@ chroot /newarch useradd -m -r vagrant -p '$1$MPmczGP9$1SeNO4bw5YgiEJuo/ZkWq1'
144
144
  #get some ruby running
145
145
  chroot /newarch pacman --noconfirm -S git curl gcc make
146
146
  echo "bash < <( curl -L http://bit.ly/rvm-install-system-wide )"| chroot /newarch /bin/bash -
147
- echo "/usr/local/bin/rvm install http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz "| chroot /newarch sh -
148
- echo "/usr/local/bin/rvm use http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz --default "| chroot /newarch sh -
147
+ echo "/usr/local/bin/rvm install ruby-1.8.7 "| chroot /newarch sh -
148
+ echo "/usr/local/bin/rvm use ruby-1.8.7 --default "| chroot /newarch sh -
149
149
 
150
150
 
151
151
  #Installing chef & Puppet
@@ -145,8 +145,8 @@ chroot /newarch useradd -m -r vagrant -p '$1$MPmczGP9$1SeNO4bw5YgiEJuo/ZkWq1'
145
145
  #get some ruby running
146
146
  chroot /newarch pacman --noconfirm -S git curl gcc make
147
147
  echo "bash < <( curl -L http://bit.ly/rvm-install-system-wide )"| chroot /newarch /bin/bash -
148
- echo "/usr/local/bin/rvm install http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz "| chroot /newarch sh -
149
- echo "/usr/local/bin/rvm use http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz --default "| chroot /newarch sh -
148
+ echo "/usr/local/bin/rvm install ruby-1.8.7 "| chroot /newarch sh -
149
+ echo "/usr/local/bin/rvm use ruby-1.8.7 --default "| chroot /newarch sh -
150
150
 
151
151
 
152
152
  #Installing chef & Puppet
@@ -144,8 +144,8 @@ chroot /mnt/gentoo chown -R vagrant /home/vagrant/.ssh
144
144
  chroot /mnt/gentoo emerge git curl gcc automake m4
145
145
  chroot /mnt/gentoo emerge libiconv readline zlib openssl curl git libyaml sqlite libxslt
146
146
  echo "bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)"| chroot /mnt/gentoo /bin/bash -
147
- echo "/usr/local/rvm/bin/rvm install http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz "| chroot /mnt/gentoo sh -
148
- echo "/usr/local/rvm/bin/rvm use http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz --default "| chroot /mnt/gentoo sh -
147
+ echo "/usr/local/rvm/bin/rvm install ruby-1.8.7 "| chroot /mnt/gentoo sh -
148
+ echo "/usr/local/rvm/bin/rvm use ruby-1.8.7 --default "| chroot /mnt/gentoo sh -
149
149
 
150
150
  #Installing chef & Puppet
151
151
  echo ". /usr/local/rvm/scripts/rvm ; gem install chef --no-ri --no-rdoc"| chroot /mnt/gentoo sh -
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
@@ -20,14 +20,14 @@ apt-get -y install nfs-common
20
20
  # can install their own Rubies using packages or however.
21
21
  # We must install the 1.8.x series since Puppet doesn't support
22
22
  # Ruby 1.9 yet.
23
- wget http://ftp.ruby-lang.org/pub/ruby/http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
24
- tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334.tar.gz
25
- cd http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334
23
+ wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
24
+ tar xvzf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
25
+ cd ruby-1.8.7-p334
26
26
  ./configure --prefix=/opt/ruby
27
27
  make
28
28
  make install
29
29
  cd ..
30
- rm -rf http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz-p334*
30
+ rm -rf ruby-1.8.7-p334*
31
31
 
32
32
  # Install RubyGems 1.7.2
33
33
  wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: veewee
3
3
  version: !ruby/object:Gem::Version
4
- hash: 35
4
+ hash: 33
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 28
10
- version: 0.1.28
9
+ - 29
10
+ version: 0.1.29
11
11
  platform: ruby
12
12
  authors:
13
13
  - Patrick Debois