File: Gemfile

package info (click to toggle)
vagrant-lxc 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 412 kB
  • sloc: ruby: 2,578; sh: 472; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
source 'https://rubygems.org'

group :development do
  gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
  gem 'guard'
  gem 'guard-rspec'
  gem 'rb-inotify'
end

group :development, :test do
  gem 'rake'
  gem 'rspec'
  gem 'coveralls', '~> 0.7.2', require: (ENV['COVERAGE'] == 'true')
  # The is the ref *just* before we switch to childprocess 0.6, which conflicts with vagrant 1.8 deps.
  gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
end

group :plugins do
  acceptance = (ENV['ACCEPTANCE'] == 'true')
  gem 'vagrant-cachier',  git: 'https://github.com/fgrehm/vagrant-cachier.git',  require: !acceptance
  gem 'vagrant-pristine', git: 'https://github.com/fgrehm/vagrant-pristine.git', require: !acceptance
  gem 'vagrant-omnibus',  require: !acceptance
  gemspec
end