forked from inspec/train
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
32 lines (29 loc) · 838 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
26
27
28
29
30
31
32
source "https://rubygems.org"
gemspec name: "train"
group :test do
gem "coveralls", require: false
gem "minitest", "~> 5.8"
gem "rake", "~> 13.0"
gem "chefstyle", "2.0.7"
gem "concurrent-ruby", "~> 1.0"
gem "pry-byebug"
gem "m"
gem "ed25519" # ed25519 ssh key support
gem "bcrypt_pbkdf" # ed25519 ssh key support
# This is not a true gem installation
# (Gem::Specification.find_by_path('train-gem-fixture') will return nil)
# but it's close enough to show the gempath handler can find a plugin
# See test/unit/
gem "train-test-fixture", path: "test/fixtures/plugins/train-test-fixture"
gem "mocha", "~> 1.1"
end
group :integration do
gem "berkshelf", ">= 6.0"
gem "test-kitchen", ">= 2"
gem "kitchen-vagrant"
end
group :tools do
gem "pry", "~> 0.10"
gem "rb-readline"
gem "license_finder"
end