* lib/date.rb: do not require lib/delta.rb.

* lib/date/delta.rb: follows the above change.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2009-10-18 13:38:55 +00:00
Родитель a07cef02a9
Коммит a542b9248e
3 изменённых файлов: 38 добавлений и 8 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Sun Oct 18 22:33:25 2009 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb: do not require lib/delta.rb.
* lib/date/delta.rb: follows the above change.
Sun Oct 18 19:14:21 2009 Tanaka Akira <akr@fsij.org>
* parse.y (is_special_global_name): add boundary check.

Просмотреть файл

@ -194,7 +194,6 @@
# puts secs_to_new_year()
require 'date/format'
require 'date/delta'
# Class representing a date.
#
@ -1337,9 +1336,6 @@ class Date
def + (n)
case n
when Numeric; return self.class.new!(@ajd + n, @of, @sg)
when Delta
d = n.__send__(:delta)
return (self >> d.imag) + d.real
end
raise TypeError, 'expected numeric'
end
@ -1356,11 +1352,8 @@ class Date
case x
when Numeric; return self.class.new!(@ajd - x, @of, @sg)
when Date; return @ajd - x.ajd
when Delta
d = x.__send__(:delta)
return (self << d.imag) - d.real
end
raise TypeError, 'expected numeric'
raise TypeError, 'expected numeric or date'
end
# Compare this date with another date.

Просмотреть файл

@ -1,5 +1,6 @@
# delta.rb: Written by Tadayoshi Funaba 2004-2009
require 'date'
require 'date/delta/parser'
class Date
@ -398,3 +399,33 @@ class Date
end
end
vsave = $VERBOSE
$VERBOSE = false
class Date
def + (n)
case n
when Numeric; return self.class.new!(@ajd + n, @of, @sg)
when Delta
d = n.__send__(:delta)
return (self >> d.imag) + d.real
end
raise TypeError, 'expected numeric'
end
def - (x)
case x
when Numeric; return self.class.new!(@ajd - x, @of, @sg)
when Date; return @ajd - x.ajd
when Delta
d = x.__send__(:delta)
return (self << d.imag) - d.real
end
raise TypeError, 'expected numeric'
end
end
$VERBOSE = vsave