Sha256: d09ab987899976f37a92938046cca3b981096982db9f20f6b7c3739abd7957e8
Contents?: true
Size: 520 Bytes
Versions: 1
Compression:
Stored size: 520 Bytes
Contents
# 日付・時刻を扱うクラス Time に機能を追加するモジュール module PositiveTimeSupport::TimeExt def to_time_hm_array [ hour , min ] end # Time のインスタンスを、hh:mm の形の文字列に変換するメソッド # @return [String] def to_s_hour_and_min strftime( "%H\:%M" ) end def to_strf_normal_ja ymd = to_strf_date_ja hms = strftime( "%H:%M:%S" ) "#{ ymd } #{ hms }" end def to_strf_normal_en strftime( "%Y-%m-%d %H:%M:%S %z" ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
positive_time_support-0.2.0 | lib/positive_time_support/time_ext.rb |