From 773a4f48d6dc141ee7d71218f3198351685f36f7 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Tue, 21 Oct 2014 00:39:40 +0100 Subject: [PATCH] allow newer ruby-libvirt (#158) As per #158, vagrant-libvirt depends on ruby-libvirt transitively through fog. Since fog/fog#2706 was resolved, fog now requires ruby-libvirt ~> 0.5.0, therefore vagrant-libvirt should allow both 0.4.x and 0.5.x. Furthermore, according to semantic versioning, we currently have no good reason to reject anything newer below 1.x. If such a restriction is required in the future (e.g. < 0.7.0) then it is likely that fog's .gemspec will take care of that on our behalf anyway. Closes #158. --- vagrant-libvirt.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant-libvirt.gemspec b/vagrant-libvirt.gemspec index 8c19f9c..e72b53b 100644 --- a/vagrant-libvirt.gemspec +++ b/vagrant-libvirt.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |gem| gem.add_development_dependency "rspec-mocks", "~> 2.12.1" gem.add_runtime_dependency 'fog', '~> 1.15' - gem.add_runtime_dependency 'ruby-libvirt', '~> 0.4.0' + gem.add_runtime_dependency 'ruby-libvirt', '~> 0.4' gem.add_runtime_dependency 'nokogiri', '~> 1.6.0' gem.add_development_dependency 'rake'