diff --git a/scripts/Gemfile b/scripts/Gemfile index 5e8ad1ee14..eec197f3c9 100644 --- a/scripts/Gemfile +++ b/scripts/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gem "fastlane" gem "addressable", ">= 2.8.0" +gem "json", ">= 2.19.2" gem "rexml", ">= 3.4.2" -plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') -eval_gemfile(plugins_path) if File.exist?(plugins_path) +eval_gemfile("fastlane/Pluginfile") if File.exist?(File.join(__dir__, "fastlane", "Pluginfile")) diff --git a/scripts/Gemfile.lock b/scripts/Gemfile.lock index 11e23187f6..af233ac23f 100644 --- a/scripts/Gemfile.lock +++ b/scripts/Gemfile.lock @@ -178,7 +178,7 @@ GEM httpclient (2.9.0) mutex_m jmespath (1.6.2) - json (2.18.1) + json (2.19.2) jwt (2.10.2) base64 logger (1.7.0) @@ -247,7 +247,8 @@ DEPENDENCIES fastlane fastlane-plugin-release_actions! fastlane-plugin-semantic_release + json (>= 2.19.2) rexml (>= 3.4.2) BUNDLED WITH - 2.6.9 + 2.5.22