LoginSignup
0
0

More than 1 year has passed since last update.

ActiveSupport::Duration と遊ぶ

Last updated at Posted at 2018-12-21

Duration は Duration

15.minutes
=> 15 minutes

Duration から Integer への変換

15.minutes.to_i
=> 900

Integer から Duration の引き算

結果はDuration

60*60 - 15.minutes
=> -15 minutes3600 seconds

Integer から Duration の引き算 からの Integerへの変換

あたりまえたいそう‥。

(60*60 - 15.minutes).to_i
=> 2700

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0