Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用捆绑器来要求我的项目中的所有宝石。但是,它不适用于 yaml/logger。
如果我将 gem 'yaml' 添加到我的 gemfile 中,并运行 bundle install,我会得到:
Could not find gem 'yaml (>= 0) ruby' in the gems available on this machine.
但我通常需要它就好了。我究竟做错了什么?
谢谢
YAML是Ruby 标准库的一部分,而不是 Gem。
YAML
你不需要将它添加到你的 Gemfile 中,只需要它。
irb(main):001:0> require 'yaml' => true irb(main):002:0> YAML => Psych
这同样适用于Logger。