Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library _builtin > class Numeric > ceil
ceil -> Integer
自身と等しいかより大きな整数のうち最小のものを返します。
1.ceil #=> 1 1.2.ceil #=> 2 (-1.2).ceil #=> -1 (-1.5).ceil #=> -1
[SEE_ALSO] Numeric#floor, Numeric#round, Numeric#truncate