-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Gemfile
33 lines (28 loc) · 1.1 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
source 'https://rubygems.org'
# Du to some changes in bundler, specifying dependencies with the `gemspec`
# keyword will trigger an error as `vagrant-bindfs` would then be declared
# twice, once here and once in the :plugins group.
#
# To work around this issue, development dependencies should be added to
# the :development group below instead of in `.gemspec` file.
#
# gemspec
group :plugins do
# `vagrant-bindfs` (and other plugins that it may depends on) must be in this
# :plugins group to be correcty loaded in development.
gem 'vagrant-bindfs', path: '.'
end
group :development, :test 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`.
gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git' # , tag: 'v2.4.1'
# Development dependencies
gem 'rake'
gem 'rspec', '~> 3.13.0'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
end