Skip to content

Instantly share code, notes, and snippets.

@dnlmengs
Created April 14, 2017 20:45
Show Gist options
  • Save dnlmengs/3cc2159105fbfb7d7f5d63967ab045c8 to your computer and use it in GitHub Desktop.
Save dnlmengs/3cc2159105fbfb7d7f5d63967ab045c8 to your computer and use it in GitHub Desktop.
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
gemspec
end
gem 'coveralls', require: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment