Sha256: 54e4b353c7a7494f71ba46a2b6abfceae520a7fed955515bbd840782c3d3721c
Contents?: true
Size: 1.02 KB
Versions: 6
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true Vagrant.configure('2') do |config| config.vm.box = 'ubuntu/precise64' config.vm.provision 'shell', :inline => <<-SH set -e cd /vagrant echo 'apt-get update...' apt-get update > /dev/null echo 'Install git, imagemagick, ruby1.9.1-dev...' apt-get install -y git npm imagemagick ruby1.9.1-dev > /dev/null echo 'Install node, npm...' curl -sL https://deb.nodesource.com/setup | sudo bash - > /dev/null sudo apt-get install -y nodejs > /dev/null echo 'Update rubygems...' REALLY_GEM_UPDATE_SYSTEM=x gem update --system > /dev/null echo 'Install bundler...' gem install bundler > /dev/null echo 'Install svgo...' npm install -g -q svgo > /dev/null echo 'Install pngout...' curl -s \ 'http://static.jonof.id.au/dl/kenutils/pngout-20130221-linux.tar.gz' | \ tar -xz -C /usr/local/bin --strip-components 2 \ --wildcards '*/x86_64/pngout' echo 'Bundle...' bundle install --jobs=3 --quiet bundle list SH end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
image_optim-0.29.0 | Vagrantfile |
image_optim-0.28.0 | Vagrantfile |
image_optim-0.27.1 | Vagrantfile |
image_optim-0.27.0 | Vagrantfile |
image_optim-0.26.5 | Vagrantfile |
image_optim-0.26.4 | Vagrantfile |