LoginSignup
4
4

More than 5 years have passed since last update.

Railsで曜日の日本語表記を返すやつ

Last updated at Posted at 2015-02-23

デフォルトでは無さそうな感じだったのでlocaleを使ってDateを拡張


class Date
  def wday_i18n
    I18n.t("date.abbr_day_names")[self.wday]
  end
end

こちらを参考にさせて頂きました。
http://qiita.com/hisa0507/items/8209448f1e3e20b96b52

4
4
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
4
4