Created
April 14, 2017 20:45
-
-
Save dnlmengs/3cc2159105fbfb7d7f5d63967ab045c8 to your computer and use it in GitHub Desktop.
possible workarroud for https://github.com/bundler/bundler/issues/5263
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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