vagrant-lxc-ng/lib/vagrant-backports/utils.rb

10 lines
184 B
Ruby
Raw Normal View History

module Vagrant
module Backports
class << self
def vagrant_1_3_or_later?
Gem::Version.new(Vagrant::VERSION) >= Gem::Version.new('1.3.0')
end
end
end
end