Merge pull request #29 from pronix/master

ruby version restriction
This commit is contained in:
Дмитрий Василец 2013-05-21 15:39:19 -07:00
commit 44f7251aa8

View File

@ -9,6 +9,7 @@ module VagrantPlugins
class Provider < Vagrant.plugin('2', :provider) class Provider < Vagrant.plugin('2', :provider)
def initialize(machine) def initialize(machine)
@machine = machine @machine = machine
raise 'REQUIRE USE RUBY >= 1.9.3 VERSION' if RUBY_VERSION < '1.9.3'
end end
# This should return an action callable for the given name. # This should return an action callable for the given name.