File: Gemfile

package info (click to toggle)
ruby-train 3.16.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,272 kB
  • sloc: ruby: 10,507; sh: 17; makefile: 8
file content (41 lines) | stat: -rw-r--r-- 1,229 bytes parent folder | download
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
34
35
36
37
38
39
40
41
source "https://rubygems.org"
gemspec name: "train"

group :test do
  gem "minitest", "~> 5.8"
  gem "rake", "~> 13.0"
  gem "chefstyle", "2.2.3"
  gem "concurrent-ruby", "~> 1.0"
  if Gem.ruby_version < Gem::Version.new("3.1.0")
    # byebug 12.0.0+ requires Ruby 3.1+
    gem "byebug", "~> 11.0"
  else
    gem "byebug"
  end
  gem "m"
  gem "ed25519" # ed25519 ssh key support
  gem "bcrypt_pbkdf" # ed25519 ssh key support
  gem "x25519" # curve25519-sha256 ssh key support done here as its a native gem we can't put in the gemspec
  # 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", "~> 2.1"
  gem "simplecov", "~> 0.21"
  gem "simplecov_json_formatter"
end
#  uncomment when you resume integration testing
# if Gem.ruby_version >= Gem::Version.new("2.7.0")
#   group :integration do
#     gem "berkshelf", ">= 6.0"
#     gem "test-kitchen", ">= 2"
#     gem "kitchen-vagrant"
#   end
# end

group :tools do
  gem "pry", "~> 0.10"
  gem "rb-readline"
  gem "license_finder"
end