2013-03-26 18:55:30 -05: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`.
|
2015-05-23 08:44:27 -05:00
|
|
|
gem 'vagrant', :git => 'https://github.com/mitchellh/vagrant.git'
|
2015-04-15 02:45:29 -05:00
|
|
|
gem 'pry'
|
2013-03-26 18:55:30 -05:00
|
|
|
end
|
|
|
|
|
2014-03-15 19:47:29 -05:00
|
|
|
group :plugins do
|
2015-05-23 08:44:27 -05:00
|
|
|
gem 'vagrant-libvirt', :path => '.'
|
2014-03-15 19:47:29 -05:00
|
|
|
end
|
|
|
|
|