gpt4 book ai didi

ruby bundler 。如何使用 Gemfile.lock 中的工作集锁定 Gemfile 中的所有版本?

转载 作者:数据小太阳 更新时间:2023-10-29 07:54:54 26 4
gpt4 key购买 nike

我想将我的 Gemfile 设置为使用来自有效 Gemfile.lock 的所有确切版本。

最简单的方法是什么?

我不想手动完成。 bundler 是否开箱即用。如果没有,是否有 gem?

澄清一下,我有一个像这样的 Gemfile:

source 'https://rubygems.org'

gem 'pg'
gem 'puma'
gem 'rails'

我运行 bundle install,我得到一个适合我的 Gemfile.lock:

GEM
remote: https://rubygems.org/
specs:
pg (0.21.0)
puma (3.10.0)
rails (5.0.5)
actioncable (= 5.0.5)
actionmailer (= 5.0.5)
actionpack (= 5.0.5)
actionview (= 5.0.5)
activejob (= 5.0.5)
activemodel (= 5.0.5)
activerecord (= 5.0.5)
activesupport (= 5.0.5)
bundler (>= 1.3.0)
railties (= 5.0.5)
sprockets-rails (>= 2.0.0)

现在我想要一个命令来更新我的 Gemfile 以便指定版本:

source 'https://rubygems.org'

gem 'pg', '0.21.0'
gem 'puma', '3.10.0'
gem 'rails', '5.0.5'

最佳答案

如果您尝试在 Gemfile 中为另一个项目重现您当前的 Gemfile.lock,您可以指定您的 gem 的确切版本。

假设我的 Rails 应用程序中有以下 Gemfile:

source 'https://rubygems.org'

gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'

它生成以下 Gemfile.lock:

GEM
remote: https://rubygems.org/
specs:
pg (0.21.0)
puma (3.10.0)
rails (5.0.5)
actioncable (= 5.0.5)
actionmailer (= 5.0.5)
actionpack (= 5.0.5)
actionview (= 5.0.5)
activejob (= 5.0.5)
activemodel (= 5.0.5)
activerecord (= 5.0.5)
activesupport (= 5.0.5)
bundler (>= 1.3.0)
railties (= 5.0.5)
sprockets-rails (>= 2.0.0)

如果我想在新项目中重现完全相同的情况,我将创建一个具有精确版本的 Gemfile:

source 'https://rubygems.org'

gem 'pg', '0.21.0'
gem 'puma', '3.10.0'
gem 'rails', '5.0.5'

等等..

可以引用bundler documentation

编辑

在您改变问题的焦点之后,您似乎正试图从 Gemfile.lock 创建一个 Gemfile

你可以看看bundle --deployment .我看到几个提示输出的 SO 问题。

因此,如果不是 100% 满意,您可以使用 Bundler::LockfileParser 并制作您自己的脚本,例如:

# test.rb
require 'bundler'

lockfile = Bundler::LockfileParser.new(Bundler.read_file('Gemfile.lock'))

specs = lockfile.specs
gems_hash = Hash.new.tap do |h|
specs.each do |s|
h[s.name] = {
spec: s,
dependencies: s.dependencies.map(&:name)
}
end
end

dependencies = gems_hash.keys && gems_hash.values.map { |h| h[:dependencies] }.flatten.uniq.sort

# Remove from the new Gemfile all gems installed as dependencies
dependencies.each { |dep| gems_hash.delete(dep) }

relevant_specs = gems_hash.values.map { |h| h[:spec] }

# I assume that by default you are installing from rubygems
puts "source 'https://rubygems.org'"
puts

relevant_specs.each do |s|
if s.source.to_s =~ /https:\/\/rubygems.org/
puts "gem '#{s.name}', '#{s.version}'" # eventually add "plaftform: :#{s.platform}"
# I consider as only alternative a git source.
elsif s.source.is_a?(Bundler::Source::Git)
uri = s.source.uri
branch = s.source.branch
ref = s.source.ref
puts
puts "git '#{uri}', branch: '#{branch}', ref: :#{ref} do"
puts " gem '#{s.name}'"
puts "end"
puts
end
end
puts

我创建了这个 gist方便阅读。

然后您可以通过运行以下命令创建您的 Gemfile:

$ ruby test.rb > Gemfile

关于 ruby bundler 。如何使用 Gemfile.lock 中的工作集锁定 Gemfile 中的所有版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46566869/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com