summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorskeshari12 <skeshari@msystechnologies.com>2022-04-12 15:50:38 +0530
committerskeshari12 <skeshari@msystechnologies.com>2022-04-12 15:50:38 +0530
commit0f05b88d19bf180499d4401c41918ff4a87b4d67 (patch)
tree9324430034066a5d77b7baae60de2f19c289735b /Gemfile
parent66ca90cec495a545638d65ca307dee35b382d322 (diff)
downloadffi-yajl-0f05b88d19bf180499d4401c41918ff4a87b4d67.tar.gz
fix error
Signed-off-by: skeshari12 <skeshari@msystechnologies.com>
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