Rails Bundler - 在 Gemfile 中指定 with-opt-dir?
Rails Bundler - specify with-opt-dir in Gemfile?
我可以在下载 openssl 并执行以下命令后安装 puma:
gem install -- --with-opt-dir=c:\openssl
问题是如果我尝试用 bundle 更新 puma,它对这个目录一无所知。
你能在 Rails Gemfile 中指定 -- --with-opt-dir=
吗?
您可以在捆绑配置中指定它,如下所示:bundle config build.puma --with-opt-dir=your/opt/dir
捆绑器会将其传递给 gem 安装。
我可以在下载 openssl 并执行以下命令后安装 puma:
gem install -- --with-opt-dir=c:\openssl
问题是如果我尝试用 bundle 更新 puma,它对这个目录一无所知。
你能在 Rails Gemfile 中指定 -- --with-opt-dir=
吗?
您可以在捆绑配置中指定它,如下所示:bundle config build.puma --with-opt-dir=your/opt/dir
捆绑器会将其传递给 gem 安装。