mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-01-07 14:33:08 -06:00
18 lines
455 B
Ruby
18 lines
455 B
Ruby
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`.
|
|
gem 'vagrant', :git => 'https://github.com/mitchellh/vagrant.git'
|
|
gem 'pry'
|
|
end
|
|
|
|
group :plugins do
|
|
gem 'vagrant-libvirt', :path => '.'
|
|
end
|
|
|