From 89198f27f6b3f7c33b8d1e5069c1b5c39b45d36a Mon Sep 17 00:00:00 2001 From: dima Date: Wed, 22 May 2013 00:37:49 +0200 Subject: [PATCH] restrict version of ruby for use --- lib/vagrant-libvirt/provider.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vagrant-libvirt/provider.rb b/lib/vagrant-libvirt/provider.rb index 1b18aef..451ee50 100644 --- a/lib/vagrant-libvirt/provider.rb +++ b/lib/vagrant-libvirt/provider.rb @@ -9,6 +9,7 @@ module VagrantPlugins class Provider < Vagrant.plugin('2', :provider) def initialize(machine) @machine = machine + raise 'REQUIRE USE RUBY >= 1.9.3 VERSION' if RUBY_VERSION < '1.9.3' end # This should return an action callable for the given name.