We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ccf28 commit f868e59Copy full SHA for f868e59
1 file changed
bundler/lib/bundler/plugin.rb
@@ -17,6 +17,13 @@ class UnknownSourceError < PluginError; end
17
class PluginInstallError < PluginError; end
18
19
PLUGIN_FILE_NAME = "plugins.rb"
20
+
21
+ # Module-level flag set while .gemfile_install parses the Gemfile and
22
+ # consulted by .from_lock to substitute plugin sources with
23
+ # UnloadedSource. It relies on definitions being built one at a time in
24
+ # a single thread; if they are ever built concurrently or reentrantly,
25
+ # this needs to be replaced by explicit state passed down to the
26
+ # lockfile parser.
27
@gemfile_parse = false
28
29
module_function
0 commit comments