Skip to content

Commit 1793982

Browse files
committed
Gemfile/gemspec updates
Use new version of vagrant and vagrant-libvirt. Don't version lock dev dependencies. Not sure why but this was causing a lot of trouble.
1 parent ff8a417 commit 1793982

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ group :development do
66
# We depend on Vagrant for development, but we don't add it as a
77
# gem dependency because we expect to be installed within the
88
# Vagrant environment itself using `vagrant plugin`.
9-
gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git", :ref => 'v1.8.6'
9+
gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git", :ref => 'v2.0.2'
1010
end
1111

1212
group :plugins do
1313
gem "vagrant-sshfs" , path: "."
1414
# Add vagrant-libvirt plugin here, otherwise you won't be able to
1515
# use libvirt as a provider when you execute `bundle exec vagrant up`
16-
gem "vagrant-libvirt" , '0.0.33'
16+
gem "vagrant-libvirt" , '0.0.43'
1717
end

vagrant-sshfs.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Gem::Specification.new do |spec|
2323

2424
spec.add_dependency 'win32-process'
2525

26-
spec.add_development_dependency 'bundler', '~> 1.7'
27-
spec.add_development_dependency 'rake', '~> 10.0'
28-
spec.add_development_dependency 'cucumber', '~> 2.1'
29-
spec.add_development_dependency 'aruba', '~> 0.13'
30-
spec.add_development_dependency 'komenda', '~> 0.1.6'
26+
spec.add_development_dependency 'bundler'
27+
spec.add_development_dependency 'rake'
28+
spec.add_development_dependency 'cucumber'
29+
spec.add_development_dependency 'aruba'
30+
spec.add_development_dependency 'komenda'
3131
end

0 commit comments

Comments
 (0)