ここにいくつかの出力があります:
Date.today => Mon, 25 Jun 2012
Date.today.to_formatted_s(:long_ordinal) => "June 25th, 2012"
Date.today.strftime('%A %d, %B') => "Monday 25, June"
今、私は次の形式で出力する必要があります:
Monday 25th, June or Thrusday, 1st, October
問題は、 to_formatted_sとstrftimeが日付にのみ適用され、両方または両方が文字列を返すことです。どうすれば必要な方法で出力を取得できますか?