るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.068秒)
トップページ > バージョン:2.5.0[x] > クエリ:-[x] > クエリ:DEPRECATED[x] > クエリ:correct?[x]

別のキーワード

  1. rdoc/options deprecated
  2. options deprecated
  3. deprecated
  4. deprecated rdoc/options
  5. deprecated rdoc::options

ライブラリ

クラス

検索結果

Gem::Version.correct?(version) -> bool (54619.0)

version が正しいバージョンであれば true を返します。そうでなければ false を返します。

version が正しいバージョンであれば true を返します。そうでなければ false を返します。

//emlist[][ruby]{
p Gem::Version.correct?("9.1") # => true
p Gem::Version.correct?("incorrect") # => false

p Gem::Version.correct?(nil) # => true
# nil versions are discouraged and will be deprecated in Rubygems 4
# version が nil...