Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
質問への回答はすでに得ていましたが、編集することにしました。
明日の日付を表示できるRubyのメソッドを探していました。時間も表示されれば問題ありません。出力をフォーマットします。
Time.nowは、現在の日付、時刻、およびタイムゾーンを提供します。
Time.now => 2013-06-11 13:09:02 +0900
このメソッドを使用して明日の日付を取得するにはどうすればよいですか?
他にできる方法があればOKです。
require 'date' tomorrow = Date.today + 1
tomorrow日付オブジェクトです。ご希望のフォーマットで印刷できます。
tomorrow
Date.tomorrow