るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.077秒)
トップページ > バージョン:2.4.0[x] > クエリ:p[x] > クエリ:EC[x] > クラス:Gem::Requirement[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p=
  5. dh p

ライブラリ

検索結果

Gem::Requirement#specific? -> bool (36658.0)

条件に上限のある指定で、最新のバージョンにマッチしない可能性のある場合は、true を返します。

...ある指定で、最新のバージョンにマッチしない可能性のある場合は、true を返します。

//emlist[][ruby]{
p Gem::Requirement.new(">= 3").specific? # => false
p Gem::Requirement.new("~> 3").specific? # => true
p Gem::Requirement.new("= 3").specific? # => true
//}...