If I want to say that I support only version 6.1.0 and 6.3.0 of windows, how do I express that in the cookbook metadata?
supports 'windows', '~> 6.1.0', '~> 6.3.0' # will throw exception
From looking at the code, specifying multiple version arguments will throw an ObsoleteDependencySyntax exception, and calling supports on the same platform will simply overwrite the last version arg from what I can tell.
supports 'windows', '~> 6.1.0'
supports 'windows', '~> 6.3.0' # overwrites the previous
Is there actually a way to do this?