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.
~> 10.14Chef::Version には Chef gem のバージョン番号が含まれており、レシピ内の gem 要件を満たしていることを確認したいと考えています。
~> 10.14
とを使用Gem::RequirementしGem::Versionます。
Gem::Requirement
Gem::Version
Gem::Requirement.new("~> 10.14").satisfied_by?(Gem::Version.new(Chef::VERSION))
これはブール値を返します。Chef::VERSION満たす場合は true です~> 10.14。
Chef::VERSION