forked from invernizzi/vagrant-scp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
25 lines (22 loc) · 805 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
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`.
gem 'vagrant', github: 'hashicorp/vagrant', ref: 'v2.2.19'
end
group :plugins do
gemspec
gem 'bundler', '~> 2.2', '>= 2.2.3'
gem 'code-scanning-rubocop', '~> 0.5', '>= 0.5.0'
gem 'rake', '~> 13.0', '>= 13.0.6'
gem 'rspec', '~> 3.4'
gem 'rspec-core', '~> 3.4'
gem 'rspec-expectations', '~> 3.10', '>= 3.10.0'
gem 'rspec-mocks', '~> 3.10', '>= 3.10.0'
gem 'rubocop', '~> 1.0'
gem 'rubocop-rake', '~> 0.6', '>= 0.6.0'
gem 'rubocop-rspec', '~> 2.4', '>= 2.4.0'
gem 'ruby-progressbar', '~> 1.11', '>= 1.11.0'
end