zeisler/active_mocker

View on GitHub
Vagrantfile

Summary

Maintainability
Test Coverage
# encoding: utf-8
# frozen_string_literal: true
# This file originally created at http://rove.io/70b9e033e9d63eea7548469647e3efd3

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = "opscode-ubuntu-12.04_chef-11.4.0"
  config.vm.box_url = "https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_chef-11.4.0.box"
  config.ssh.forward_agent = true

  config.vm.network :forwarded_port, guest: 3000, host: 3000

  config.vm.provision :chef_solo do |chef|
    chef.cookbooks_path = ["cookbooks"]
    chef.add_recipe :apt
    chef.add_recipe "rvm::vagrant"
    chef.add_recipe "rvm::system"
    chef.add_recipe "sqlite"
    chef.add_recipe "git"
    chef.json = {
      git: {
        prefix: "/usr/local",
      },
    }
  end
end