From e24f6e50b535be1d01c7277cdcd2b4781bc20cc4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 7 Jan 2014 14:04:13 -0800 Subject: [PATCH] core: depend on Vagrant by path, rather than by version --- lib/vagrant/bundler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/bundler.rb b/lib/vagrant/bundler.rb index 92a06fa0c..bc605a35a 100644 --- a/lib/vagrant/bundler.rb +++ b/lib/vagrant/bundler.rb @@ -154,7 +154,7 @@ module Vagrant gemfile.puts(%Q[source "#{source}"]) end - gemfile.puts(%Q[gem "vagrant", "= #{Vagrant::VERSION}"]) + gemfile.puts(%Q[gem "vagrant", path: "#{Vagrant.source_root}"]) gemfile.puts("group :plugins do") plugins.each do |name, plugin|