Files
vagrant-libvirt/Gemfile

23 lines
603 B
Ruby
Raw Normal View History

2013-03-27 00:55:30 +01:00
source 'https://rubygems.org'
# Specify your gem's dependencies in vagrant-libvirt.gemspec
gemspec
group :development do
# We depend on Vagrant for development, but we don't add it as a
# gem dependency because we expect to be installed within the
# Vagrant environment itself using `vagrant plugin`.
if ENV['VAGRANT_VERSION']
gem 'vagrant', :git => 'https://github.com/mitchellh/vagrant.git',
tag: ENV['VAGRANT_VERSION']
else
gem 'vagrant', :git => 'https://github.com/mitchellh/vagrant.git'
end
2015-04-15 09:45:29 +02:00
gem 'pry'
2013-03-27 00:55:30 +01:00
end
group :plugins do
2015-05-23 15:44:27 +02:00
gem 'vagrant-libvirt', :path => '.'
end