るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.083秒)
トップページ > クエリ:-[x] > クエリ:on[x] > クエリ:bump[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method gets
  4. irb/input-method new
  5. matrix -

ライブラリ

クラス

検索結果

Gem::Version#bump -> Gem::Version (21319.0)

最後の一桁を切り上げた新しい Gem::Version のインスタンスを返します。

...Gem::Version のインスタンスを返します。

ただし、英字のプレリリースの部分は、無視されます。

//emlist[][ruby]{
p Gem::Version.new('5.3.1').bump # => #<Gem::Version "5.4">
p Gem::Version.new('5.3.1.a.1').bump # => #<Gem::Version "5.4">
p Gem::Version.new('5.3...
....1.3.1').bump # => #<Gem::Version "5.3.1.4">
//}...