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.
我想查找 Ruby gems 的依赖信息。根据文档,这将返回最新Rails gem 的依赖项列表:
https://rubygems.org/api/v1/gems/rails.xml
但是如何获取特定版本的元信息,例如rails 3.0.0?
那么显然这是不可能的。
似乎唯一的方法是调用:
https://rubygems.org/api/v1/dependencies?gems=rails
但这会返回所有版本的依赖关系。好吧,总比没有好。