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.
如果我理解正确,
spec.add_runtime_dependency “某事”
用于运行时依赖项。
spec.add_development_dependency “某事”
用于开发依赖项。
在运行时和开发环境中都很有用的依赖项呢?它们去哪儿了?
运行时依赖项是您的 gem 需要工作的内容(例如需要 activesupport 的 rails 或您自己的类调用的 faker)。
当有人想要修改您的 gem(例如 rspec)时,开发依赖项很有用
没有其他选择。你能提供一个用例示例吗?