diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-10 11:27:56 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-10 11:27:56 +0000 |
commit | d78b26583960d06527742833573022cb0be2fe2e (patch) | |
tree | 12f31e2eef2cf736a883856506f0076f7017083f /lib/date.rb | |
parent | 352303c906a30ba2abc174eb8eafa9a00cd335a2 (diff) |
updated based on date2 3.9.1.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/date.rb')
-rw-r--r-- | lib/date.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/date.rb b/lib/date.rb index 1710af249a..a34b64edaf 100644 --- a/lib/date.rb +++ b/lib/date.rb @@ -6,7 +6,7 @@ # Documentation: William Webber <[email protected]> # #-- -# $Id: date.rb,v 2.21 2006-08-19 22:38:12+09 tadf Exp $ +# $Id: date.rb,v 2.23 2006-09-09 22:44:21+09 tadf Exp $ #++ # # == Overview @@ -1149,7 +1149,7 @@ class Date # date at each step. def step(limit, step=1) # :yield: date da = self - op = [:-,:<=,:>=][step<=>0] + op = %w(- <= >=)[step <=> 0] while da.__send__(op, limit) yield da da += step |