We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you do:
BUNDLE_PATH="/usr/local/bundle" rails generate blacklight:install
It fails when it gets to the assets installer:
21.79 generate blacklight:assets 21.79 rails generate blacklight:assets 21.86 /usr/local/lib/ruby/3.3.0/bundler/definition.rb:594:in `materialize': Could not find solr_wrapper-4.0.2, rsolr-2.6.0, http-5.2.0, minitar-1.0.1, retriable-3.1.2, ruby-progressbar-1.13.0, http-cookie-1.0.7, http-form_data-2.3.0, llhttp-ffi-0.5.0, domain_name-0.6.20240107, ffi-compiler-1.3.2 in locally installed gems (Bundler::GemNotFound)
This is due to our use of Bundler.with_unbundled_env. I'm not sure if there's a reason we want this in generators.
Bundler.with_unbundled_env
The text was updated successfully, but these errors were encountered:
Allow generating when BUNDLE_PATH is set
5c59e5e
Fixes #3284
Successfully merging a pull request may close this issue.
If you do:
It fails when it gets to the assets installer:
This is due to our use of
Bundler.with_unbundled_env
. I'm not sure if there's a reason we want this in generators.The text was updated successfully, but these errors were encountered: