diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-24 07:47:01 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-24 07:47:01 +0000 |
commit | 728b75bc9bba6786d36dbc19f3c05f26322d0946 () | |
tree | 14a3c7e716cf23c8398327361e31a1f8e78ca799 | |
parent | 727f6ee8efdd02019294076f7f41338eb8b8277a (diff) |
time.rb: yday support
* lib/time.rb (Time.make_time): added yday support. [ruby-core:87545] [Bug #14860] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/time.rb | 19 | ||||
-rw-r--r-- | test/test_time.rb | 10 |
2 files changed, 25 insertions, 4 deletions
@@ -245,8 +245,8 @@ class Time end private :apply_offset - def make_time(date, year, mon, day, hour, min, sec, sec_fraction, zone, now) - if !year && !mon && !day && !hour && !min && !sec && !sec_fraction raise ArgumentError, "no time information in #{date.inspect}" end @@ -256,6 +256,17 @@ class Time off = zone_offset(zone, off_year) if zone end if now if off now = now.getlocal(off) if now.utc_offset != off @@ -363,7 +374,7 @@ class Time d = Date._parse(date, comp) year = d[:year] year = yield(year) if year && !comp - make_time(date, year, d[:mon], d[:mday], d[:hour], d[:min], d[:sec], d[:sec_fraction], d[:zone], now) end # @@ -441,7 +452,7 @@ class Time else year = d[:year] year = yield(year) if year && block_given? - t = make_time(date, year, d[:mon], d[:mday], d[:hour], d[:min], d[:sec], d[:sec_fraction], d[:zone], now) end t end @@ -495,6 +495,16 @@ class TestTimeExtension < Test::Unit::TestCase # :nodoc: assert_equal(true, t.utc?) end def test_nsec assert_equal(123456789, Time.parse("2000-01-01T00:00:00.123456789+00:00").tv_nsec) end |