Gem dependency version can be specified with prefixes =
, <
, >
, <=
, >=
and ~>
. I understand all except last one, what does ~>
mean?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
The ~>
operator means: match within the same version, depending on how specific you want it to be, here's some examples:
Specification From ... To (exclusive)
">= 3.0" 3.0 ... ∞
"~> 3.0" 3.0 ... 4.0
"~> 3.0.0" 3.0.0 ... 3.1
"~> 3.5" 3.5 ... 4.0
"~> 3.5.0" 3.5.0 ... 3.6
Source