Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

書籍 Ruby Cookbook | 現在日時の取得

パンくず

Ruby Cookbook
現在日時の取得

概要

現在日時の取得

サンプル

now_date_time=DateTime.now
now_time=Time.now
now_date=Date.today

puts now_date_time.to_s
puts now_time.to_s
puts now_date.to_s

出力

2012-06-19T00:41:31+09:00
2012-06-19 00:41:31 +0900
2012-06-19