File: Gemfile

package info (click to toggle)
ruby-mixlib-install 3.12.16-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 193,056 kB
  • sloc: ruby: 3,843; sh: 664; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 635 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
source "https://rubygems.org"

gemspec

gem "chef-utils", "= 16.6.14" if RUBY_VERSION < "2.6.0"

group :test do
  gem "rake"
  gem "rspec"
  gem "vcr"
  gem "webrick"
  gem "webmock", "~> 3.4"
  gem "aruba", "~> 0.14"
  gem "cucumber", "~> 1.3.20"
  gem "contracts", "~> 0.16.0" # this entry can go away when ruby < 3 support is gone
  if RUBY_VERSION < "2.5.0"
    gem "climate_control", "= 0.1.0"
  else
    gem "climate_control", "~> 1.0"
  end
end

# use old chefstyle to support TargetRubyVersion of 1.9
group :chefstyle do
  gem "chefstyle", "~> 0.4.0"
end

group :debug do
  gem "pry"
  gem "pry-byebug"
  gem "rb-readline"
end