Sha256: 345b50ea3eb52fdc7da3c977bf348b149cb6934cb3aa4868182f1b5d77e6aa21
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
source 'https://rubygems.org' ENV['TEST_VAGRANT_VERSION'] ||= 'v1.8.6' # Wrapping gemspec in the :plugins group causes Vagrant 1.5 and newer to # automagically load this plugin during acceptance tests. group :plugins do gemspec end group :development do gem 'yard', '~> 0.8.7' gem 'redcarpet' end group :test do if ENV['TEST_VAGRANT_VERSION'] == 'HEAD' gem 'vagrant', :github => 'mitchellh/vagrant', :branch => 'master' else gem 'vagrant', :github => 'mitchellh/vagrant', :tag => ENV['TEST_VAGRANT_VERSION'] # FIXME: Hack to allow Vagrant v1.6.5 to install for tests. Remove when # support for 1.6.5 is dropped. gem 'rack', '< 2' # FIXME: Hack to allow Vagrant v1.8.5 to install for tests. Remove when # support for 1.8.5 is dropped. gem 'ruby_dep', '~> 1.3.1' end # Pinned on 12/10/2014. Compatible with Vagrant 1.6.x, 1.7.x and 1.8.x. gem 'vagrant-spec', :github => 'mitchellh/vagrant-spec', :ref => '1df5a3a' end eval_gemfile "#{__FILE__}.local" if File.exists? "#{__FILE__}.local"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-pe_build-0.16.0 | Gemfile |