blob: e8fefc2d02b659c25a6c9cd0a96b73556d9cdda3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
apt-get update -y && apt-get install -y net-tools iproute2
touch /etc/network/interfaces
gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2)
gem --version
gem uninstall bundler -a -x || true
gem install bundler -v $(grep :bundler omnibus_overrides.rb | cut -d'"' -f2)
bundle --version
rm -f .bundle/config
# force all .rspec tests into progress display to reduce line count
echo --color > .rspec
echo -fp >> .rspec
|