Sha256: a7f9fdd21fdddfdc3dc37544e5641fcc995bf2085c023b73fcaa7f3bd30549c4
Contents?: true
Size: 657 Bytes
Versions: 52
Compression:
Stored size: 657 Bytes
Contents
# jdate.rb $Revision: 1.1 $ # #「%J」で日本語の曜日名を出す # pluginに入れるだけで動作する。 # 日付フォーマットなどで「%J」を指定するとそこが日本語の曜日になる # # Copyright (c) 2003 TADA Tadashi <sho@spc.gr.jp> # You can distribute this file under the GPL. # unless Time::new.respond_to?( :strftime_jdate_backup ) then eval( <<-MODIFY_CLASS, TOPLEVEL_BINDING ) class Time alias strftime_jdate_backup strftime JWDAY = %w(日 月 火 水 木 金 土) def strftime( format ) strftime_jdate_backup( format.gsub( /%J/, JWDAY[self.wday] ) ) end end MODIFY_CLASS end
Version data entries
52 entries across 46 versions & 2 rubygems