Sha256: ca5c68a7a7bc42073a22a538d34e6b445554d5dd89ff009956cc23bd4509d5f6

Contents?: true

Size: 825 Bytes

Versions: 8

Compression:

Stored size: 825 Bytes

Contents

VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.ssh.forward_agent = true
  config.vm.box = "boxcutter/ubuntu1404"
  config.vm.synced_folder "~/.identity", "/home/vagrant/.identity", create: true
  config.vm.synced_folder "~/.gnupg", "/home/vagrant/.gnupg", create: true

  # box-specific
  config.vm.provision "shell", inline: "apt-get update"
  config.vm.provision "shell", inline: "apt-get install -y ruby" # Installs ruby 1.9 but we should install ruby 2.4...
  config.vm.provision "shell", inline: "apt-get install -y ruby git"
  config.vm.provision "shell", inline: "gem install minitest"
  config.vm.synced_folder "~/.gem", "/home/vagrant/.gem", create: true

  config.vm.provider "virtualbox" do |vb|
    vb.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
smartystreets_ruby_sdk-5.1.0 Vagrantfile
smartystreets_ruby_sdk-5.0.0 Vagrantfile
smartystreets_ruby_sdk-4.2.0 Vagrantfile
smartystreets_ruby_sdk-4.1.3 Vagrantfile
smartystreets_ruby_sdk-4.0.1 Vagrantfile
smartystreets_ruby_sdk-4.0.0 Vagrantfile
smartystreets_ruby_sdk-3.1.0 Vagrantfile
smartystreets_ruby_sdk-3.0.0 Vagrantfile