mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Add some basic spec tests for the WaitTillUp action class to lay some foundations. Utilize vagrant-spec pinned to a known working commit for tests to pass consistently until they provide releases. Requires updating some of the rspec libraries and includes sharedcontext.rb from the jantman/vagrant-r10k project on github.
27 lines
747 B
Ruby
27 lines
747 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`.
|
|
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
|
|
|
|
gem 'vagrant-spec', :github => 'mitchellh/vagrant-spec',
|
|
tag: ENV['VAGRANT_SPEC_VERSION'] || "9bba7e1228379c0a249a06ce76ba8ea7d276afbe"
|
|
|
|
gem 'pry'
|
|
end
|
|
|
|
group :plugins do
|
|
gem 'vagrant-libvirt', :path => '.'
|
|
end
|
|
|