restrict version of ruby for use

This commit is contained in:
dima 2013-05-22 00:37:49 +02:00
parent dd5b97d014
commit 89198f27f6

View File

@ -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.