summaryrefslogtreecommitdiff
path: root/lib/date.rb
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 11:27:56 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 11:27:56 +0000
commit1985fd37b3755fe7fdcfb8dbc8a5e39f59137dc8 (patch)
tree3106cb7afc7f5e05621dcb2af28822f63c61d697 /lib/date.rb
parent3ba3860f582bbe034e54088cb9c785fc0e64a85f (diff)
updated based on date2 3.9.1.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/date.rb')
-rw-r--r--lib/date.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/date.rb b/lib/date.rb
index a8b8c59880..28491dea10 100644
--- a/lib/date.rb
+++ b/lib/date.rb
@@ -6,7 +6,7 @@
# Documentation: William Webber <william@williamwebber.com>
#
#--
-# $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
@@ -1139,7 +1139,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