Merge pull request #7418 from mitchellh/sethvargo/lock_bundler

Lock bundler to 1.12.5
This commit is contained in:
Seth Vargo 2016-06-11 02:13:58 +02:00 committed by GitHub
commit 41aa2578f5
2 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,9 @@ sudo: false
cache: bundler
before_install:
- gem install bundler -v '1.12.5'
addons:
apt:
packages:

View File

@ -16,7 +16,11 @@ Gem::Specification.new do |s|
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "vagrant"
s.add_dependency "bundler", ">= 1.5.2", "<= 1.12.0"
# Do not update the Bundler constraint. Vagrant relies on internal Bundler
# APIs, so even point releases can introduce breaking changes. These changes
# are *untestable* until after a release is made because there is no way for
# Bundler to exec into itself. Please do not update the Bundler constraint.
s.add_dependency "bundler", "= 1.12.5"
s.add_dependency "childprocess", "~> 0.5.0"
s.add_dependency "erubis", "~> 2.7.0"
s.add_dependency "i18n", ">= 0.6.0", "<= 0.8.0"