icyleaf / fastlane-plugin-android_channels

Package unsign apk with channels and sign it
MIT License
0 stars 1 forks source link

Dependabot can't parse your Gemfile #1

Open dependabot-preview[bot] opened 5 years ago

dependabot-preview[bot] commented 5 years ago

Dependabot couldn't parse the Gemfile found at /Gemfile.

You can mention @dependabot in the comments below to contact the Dependabot team.

icyleaf commented 5 years ago

@dependabot this is a fastlane plugin, the dependency is store in fastlane/Pluginfile.

feelepxyz commented 5 years ago

@icyleaf oh yeah Dependabot doesn't support interpolated arguments to eval_gemfile anymore as we fetch the manifests without evaluating them.

I think this will work if you change these lines from your Gemfile:

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)

To something like:

eval_gemfile("fastlane/Pluginfile)
icyleaf commented 5 years ago

@feelepxyz Thanks to quick response, i will try it.