Sha256: 925a92b2e265a1a8cc412322946a2fbc8406fd9a535fc6d13a115fa281b810c9

Contents?: true

Size: 787 Bytes

Versions: 5

Compression:

Stored size: 787 Bytes

Contents

source "https://rubygems.org"

gemspec

group :docs do
  gem "yard"
  gem "redcarpet"
  gem "github-markup"
end

group :test do
  # For ruby 2.4 testing we need to use ohai 14
  if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.5")
    gem "ohai", "~> 14"
  end
  gem "rake"
  gem "rspec", "~> 3.8"
  gem "rspec-expectations", "~> 3.8"
  gem "rspec-mocks", "~> 3.8"
  gem "cookstyle"
  gem "chefstyle"
  gem "foodcritic"
end

group :development do
  gem "pry"
  gem "pry-byebug"
  gem "pry-stack_explorer"
  gem "rb-readline"
end

instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]

# If you want to load debugging tools into the bundle exec sandbox,
# add these additional dependencies into Gemfile.local
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
chef-cli-1.0.14 Gemfile
chef-cli-1.0.13 Gemfile
chef-cli-1.0.11 Gemfile
chef-cli-1.0.9 Gemfile
chef-cli-1.0.6 Gemfile