Sha256: 50ce3af9c18aea78a275405445baa5fffb5e995d62f56d27cbb1d597243f8530

Contents?: true

Size: 537 Bytes

Versions: 2

Compression:

Stored size: 537 Bytes

Contents

#!/usr/bin/env bash
# A simple shell-based provisioner for Vagrant.
# 
# Documentation: [Shell Provisioner](http://vagrantup.com/v1/docs/provisioners/shell.html)
set -o errexit

sudo apt-get update

# ## Dependencies
sudo apt-get install -y ruby1.9.1

# ## Development dependencies
#
# For building `maid-x.y.z.gem`
sudo apt-get install -y git-core
# For building `ffi` for `guard`'s soft dependency on `rb-inotify`
sudo apt-get install -y make ruby1.9.1-dev libffi-dev

# ## RubyGems
cd /vagrant
sudo gem install bundler
bundle install

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
maid-0.1.3.beta.2 script/provision
maid-0.1.3.beta.1 script/provision