summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorMarc A. Paradise <marcparadise@users.noreply.github.com>2022-04-13 12:19:13 -0400
committerGitHub <noreply@github.com>2022-04-13 12:19:13 -0400
commit16abaa0ddb54460ba6e03252f796ea08db4aa637 (patch)
tree20a228a1e165b1249e9016295b319df925401345 /Gemfile
parent2ac7f207c0850a7621880ea03c85c509072fff85 (diff)
parent511ffa94c171fb96d0c232002c2bb67a155d4c67 (diff)
downloadffi-yajl-main.tar.gz
Merge pull request #113 from chef/IPACK-95-chef-ffi-libarchive-operationalize-ruby-3-0-3-1-verify-pipelineHEADmain
add ruby 3.1 in verfiy pipeline
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index 30fe201..6859635 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,13 +6,19 @@ group :development do
# for testing loading concurrently with yajl-ruby, not on jruby
# gem 'yajl-ruby', platforms: [ :ruby, :mswin, :mingw ]
gem "ffi"
- gem "rake", ">= 10.1"
- gem "rspec", "~> 3.0"
+ gem "rake"#, ">= 10.1"
+ gem "rspec"#, "~> 3.0"
gem "pry", "~> 0.9"
- gem "rake-compiler", "~> 1.0"
- gem "rack", "~> 2.0"
+ gem "rake-compiler"#, "~> 1.0"
+ gem "rack"#, "~> 2.0"
end
group :development_extras do
gem "chefstyle"
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") \ No newline at end of file